C Programming
Which of the following statements are true after execution of the program.void main(){ int a[10], i, *p; a[0] = 1; a[1] = 2; p = a; (*p)++;}

Compilation error
a[0] = 3
a[0] = 2
a[1] = 2
a[1] = 3

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

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.
All of these

ANSWER DOWNLOAD EXAMIANS APP