Question: What output does the following program produce an output? #include //function declarations int funA (int x); void funB (int x); int main (void) { //Local
What output does the following program produce an output? #include //function declarations int funA (int x); void funB (int x); int main (void) { //Local declarations int a; int b; int c;//Statements a = 5; funB(a); b = B; c = funA (b); funB (c); printf("%3d %3d %3d ", a, b, c); return 0; }//main int funA (int x) { //Statements return x * x; }//funA void funB 9int x) { //Local declarations int y;//Statements y = x/3; x % = 4; printf(" %3d %3d ", x, y); return; }//funB
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
