Home » C Programming » Declarations and Initializations

What will be the output of the program in 16 bit platform (Turbo C under DOS)? #include<stdio.h> int main() { extern int i; i = 20; printf("%d\n", sizeof(i)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!