Question: 40) What will be printed after executing the following C code fragment: // 2 pts #include void test2(int *a, int b); int main(void) {
40) What will be printed after executing the following C code fragment: // 2 pts #include void test2(int *a, int b); int main(void) { int a = 10, b = 6; test2 (&b a); printf("%d %d ", a, b); return 0; } void test2 (int *a, int b) { } 11; a b = 13;
Step by Step Solution
There are 3 Steps involved in it
This C code snippet defines a simple program that demonstrates the use of pointers and function call... View full answer
Get step-by-step solutions from verified subject matter experts
