Solution for Exercise 6-13

ex0613

#include <stdio.h>

int main()
{
    printf("The value is %d\n",3);
    printf("And %d is the value\n",3);
    printf("It's not %d\n",3+1);
    printf("And it's not %d\n",3-1);
    printf("No, the value is %d\n",3);
    return(0);
}

Output

The value is 3
And 3 is the value
It's not 4
And it's not 2
No, the value is 3