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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP