Computer Science, asked by prishuraj14p9spav, 3 months ago

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 nkcthereaper
0

Answer:

%d\n -46.7

%d 140

Explanation:

Similar questions