C Programming
Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);}

10 5 3 4
10 5 5 5
10 5 4 4
10 5 4 3
10 5 3 3

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on the first column
need not start on a new line
has # as the first character
comes before the first executable statement

ANSWER DOWNLOAD EXAMIANS APP