Home » C Programming » Declarations and Initializations

What is the output of the program in Turbo C (in DOS 16-bit OS)? #include<stdio.h> int main() { char *s1; char far *s2; char huge *s3; printf("%d, %d, %d\n", sizeof(s1), sizeof(s2), sizeof(s3)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!