4.17 What is the output of the following segment when executed?
int m = - 14, n = 3;
printf("%d\n", m/n * 10) ;
n = -1;
printf("%d", m/n * 10);
DEBUGGING EXERCISES
Answers
Answered by
0
Answer:
%d\n -46.7
%d 140
Explanation:
Similar questions