int a= -1;
int b= a * 5;
printf("a is %d,and b is %d\n,"a,b);
what is the output?
Answers
Answered by
0
Answered by
6
Answer: a is -1,
and b is 5
Explanation:
Similar questions