Computer Science, asked by PragyaTbia, 1 year ago

Find the value of a & b?
main()
int a,b;
a=2
b=++a+2;
printf("value of a is %d and b is %d\n", a,b);

Answers

Answered by mathcrackernishant
1
This will show error first error is printf and second you forgot to use +after"
value of a is %d and b is %d\n,2,5
Similar questions