#include /* Sample code from Sept 5 in class Discussed input with scanf and arithmetic */ int main(void) { int var1, var2; float m, money; char sym; printf("Please enter one input integer then a \ money amount (no symbols) then one char with spaces between: "); scanf("%d %f",&var1, &money); scanf("%c %c", &sym, &sym); money += var1; m = var2 + money++; m = var2 + ++money; printf("sum var2 is %d\n",var2); printf("\nYou entered %d and %7f and %c .\n",var1,money, sym); return 0; }