Home » C Programming » Constants

What will be the output of the program? #include<stdio.h> int get(); int main() { const int x = get(); printf("%d", x); return 0; } int get() { return 20; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!