Computer Science, asked by saradamondalsahs1976, 5 hours ago

find out the error if any if a>10; a++; { print ("%d,a"); }​

Answers

Answered by lavanya3602
2

Answer:

In declaration.

program:

int a =0;

if(a>10)

a++;

printf("%d", a);

hope this will help you.

Similar questions