Home » C Programming » Complicated Declarations

What will be the output of the program in DOS (Compiler - Turbo C)? #include<stdio.h> double i; int main() { (int)(float)(char) i; printf("%d", sizeof((int)(float)(char)i)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!