C Programming
What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);}

100 5 100
5 0 20
100 0 100
5 0 100
100 100 100

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.
Comparing the two strings to define the larger one.
Combining two strings.

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP