In: Computer Science
#include <stdio.h>
int main ()
{
int value= 10;
int value2= 5;
value = value %2;
printf("he FInal =value=%d\n", value);
value +=3;
printf("he FInal =value=%d\n", value);
value ++;
printf("he FInal =value=%d\n", value);
value= ++value2;
printf("he FInal =value=%d\n", value);
value= value2--;
printf("he FInal =value=%d\n", value);
}
what is output explain each print statement? exlain why?
SOLUTION-
I have given the explaination in C commands please see in screenshot with output -
IF YOU HAVE ANY DOUBT PLEASE COMMENT DOWN BELOW I
WILL SOLVE IT FOR YOU:)
----------------PLEASE RATE THE ANSWER-----------THANK
YOU!!!!!!!!----------