What is the output of this C code? double foo(); int main() { foo(); return 0; } foo() { printf("2 "); return 2; }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
None.
Be The First To Comment