C Programming
Determine Output:void main(){ static int i=5; if(--i){ main(); printf("%d ", i); }}

5 4 3 2 1
Infinite Loop
0 0 0 0
None of These

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of include files
All of these
Acts before compilation
Takes care of conditional compilation
Takes care of macros

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

Extracting a substring out of a string.
Partitioning the string into two strings.
Comparing the two strings to define the larger one.
Merging two strings.
Combining two strings.

ANSWER DOWNLOAD EXAMIANS APP