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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is the difference between a declaration and a definition of a variable?

There is no difference between them.
Both can occur multiple times, but a declaration must occur first.
A declaration occurs once, but a definition may occur many times.
Both can occur multiple times, but a definition must occur first.
A definition occurs once, but a declaration may occur many times.

ANSWER DOWNLOAD EXAMIANS APP