1.

What will be the output of the program?

#include<stdio.h> int main() { const c = -11; const int d = 34; printf("%d, %d n", c, d); return 0; } 

A. Error
B. -11, 34
C. 11, 34
D. None of these
Answer» C. 11, 34


Discussion

No Comment Found