int a = -1;
int b = a * 5;
printf("a is %d, and b is %d. \n", a, b);
Answers
Answered by
0
a is -1, and b is -5.
Similar questions