Solution for Exercise 6-8

ex0608

#include <stdio.h>

int main()
{
    int start = 0;

    printf("The starting value is %d.\n",start);
    return(0);
}

Output

The starting value is 0.