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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Makes the debugging task easier.
All of these
Helps to avoid repeated programming across programs.
Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP