Solution for Exercise 5-6

ex0506

#include <stdio.h>

int main()
{
    printf("The result is %d\n",8*14*25);
    return(0);
}

Output

The result is 2800

Notes

* Re-write the code so that the program's output looks like this:

* See if you can change the result displayed by re-arranging the values in the equation.