Home » C Programming » Constants

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; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!