Solution for Exercise 11-25
ex1125
#include <stdio.h>
int main()
{
int result;
result=(20-5)*(2+42)/6;
printf("(20-5)*(2+42)/6=%d\n",result);
return(0);
}
Notes
* Here is the output:
Copyright © 1997-2025 by QPBC.
All rights reserved
