C Programming
What will be the output of the program code?#include#define a 10void main(){ #define a 50 printf("%d", a);}

10
50
None of These
Compiler Error

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 code that performs a specific task. It has a name and it is reusable.
Function is a block of statements that perform some specific task.

ANSWER DOWNLOAD EXAMIANS APP