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

ANSWER DOWNLOAD EXAMIANS APP