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 0 100
5 0 20
100 100 100
5 0 100
100 5 100

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP