C Programming
Determine Output:#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));}

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

All of these
Enhances the logical clarity of the program.
Makes the debugging task easier.
Helps to avoid repeating a set of statements many times.
Helps to avoid repeated programming across programs.

ANSWER DOWNLOAD EXAMIANS APP