C Programming
Determine Output:void main(){ int i=3; switch(i) { default: printf("zero"); case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; }}

None of These
three
Error
zero

ANSWER DOWNLOAD EXAMIANS APP

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

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

ANSWER DOWNLOAD EXAMIANS APP