#include /* * Example from August 29, 2013 * Yes * a comment * */ //int z = 8; //A global variable will get a 0 on your lab in Dr T's class //int howdyfunc(int, int); int main(void) { int c = 0, d, e, f= 42; printf("Value of variable c is %d, d is %d, e is %d, f is %d \n",c,d,e,f); d = -3; e = 71; c = howdyfunc(e, d); printf("\nHello world %d\n Print a quote \" \n", howdyfunc(e,d) ); quizfunc(c, f); return 0; } int howdyfunc(int a, int b) { int c = -543; printf("Howdy!! \n"); quizfunc(b, c); return a; } /* Pop Quiz #1 August 29, 2013 Write a function that takes in two integers and declares one integer local variable and then prints all three values and returns 0. */ int quizfunc(int j, int k) { int l = 100; printf("THe three values are %d %d %d\n ",j, k, l); quizfunc(k, l); return 0; }