C Programming
What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);}

x=4
x=1
x=5
x=0
Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP