Solution for Exercise 5-8

ex0508

#include <stdio.h>

int main()
{
    printf("The total is %d\n",16+17);
    return(0);
}

Notes

* The immediate values 16 and 17 are accepted by the compiler as int values because they have no decimal part.