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)=2
sizeof(i)=1
Compiler Error
None of These

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

All of these
Function is the fundamental modular unit. A function is usually designed to perform a specific task.
Function is a block of statements that perform some specific task.
Function is a block of code that performs a specific task. It has a name and it is reusable.

ANSWER DOWNLOAD EXAMIANS APP