What is the output of this C code?
#include <stdio.h> int main() { int a = 1, b = 1; switch (a) { case a*b: printf("yes "); case a-b: printf("non"); break; } }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
Be The First To Comment