Computer Science, asked by manalikillekar143, 1 month ago

Find the output of the given program
int maino
int i. n = 10, a = 1, b= 2:
for (i=1;i<= n; i++)
af ti 94 2 == 0)
a-att .
else
b-b+4
printfredd" a bl:​

Answers

Answered by 19komalpreet
0

Answer:

here's your ans

Explanation:

void main()

{

int a=10, b;

b = a++ + ++a;

printf("%d %d %d %d", b, a++, a, ++a);

}

Similar questions