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));}

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

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