Solution for Exercise 5-12

ex0512

#include <stdio.h>

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