1.

What will be the output of the program? #include int main() { int i; i = printf("How r u\n"); i = printf("%d\n", i); printf("%d\n", i); return 0; }

A. How r u72
B. How r u82
C. How r u11
D. Error: cannot assign printf to variable
Answer» C. How r u11


Discussion

No Comment Found