1.

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

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