Computer Science, asked by bharatkumar551999, 11 months ago

Choose the correct output of the following c code
#include
int main()
{
int var1=10,var2=6;
if(var1=5)
{
var2++;
}
printf("%d%d",var1,var2++);
return 0;
}
A)106
B)108
C)57
D)58

Answers

Answered by samreen8398
0

Answer:

your question of correct answer is (b)

Similar questions