1.

What will be the output of the program ? #include int main() { int i; char a[] = "\0"; if(printf("%s", a)) printf("empty string\n"); else printf("not empty string \n"); return 0; }

A. empty string
B. not empty string
C. No output
D. 0
Answer» C. No output


Discussion

No Comment Found