C Programming
What will be the output of the program?#include#define int char void main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));}

sizeof(i)=1
Compiler Error
sizeof(i)=2
None of These

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

All of these
Takes care of conditional compilation
Acts before compilation
Takes care of macros
Takes care of include files

ANSWER DOWNLOAD EXAMIANS APP