Computer Science, asked by ranjithkumar1442, 10 months ago

main( ) 
{ int a = 5, b = 2; 
printf("%d", a+++b); 
}

Select one of the following:

results in syntax error

prints 7

none of above

prints 8


Answers

Answered by ayush12054
0

Answer:

prints 8

Explanation:

as it has a modulus and value of a has increased to 6 and b remains the same

Similar questions