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);}

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is the difference between a declaration and a definition of a variable?

A definition occurs once, but a declaration may occur many times.
A declaration occurs once, but a definition may occur many times.
Both can occur multiple times, but a declaration must occur first.
Both can occur multiple times, but a definition must occur first.
There is no difference between them.

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP