C Programming
What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));}

-10 to infinite
-10 to -1
-10 to 0
Complier error

ANSWER DOWNLOAD EXAMIANS APP

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

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

ANSWER DOWNLOAD EXAMIANS APP