/* * tourout5.c */ #include int main(void) { printf("I am %s on my computer \n", "programming"); printf("The temperature is %f degrees F \n", 68.5); printf("%d is my happiness index \n", 99); printf("I will get a grade of %c in C \n", 'A'); return 0; }