Q4.c) Write the output that will be generated by the following C program. #include OUTPUT int sum (int a, int b); main
Posted: Thu Jun 02, 2022 8:21 am
Q4.c) Write the output that will be generated by the following C program. #include OUTPUT int sum (int a, int b); main () { printf("%d\n", sum(10,20)); printf("%d", sum(30,40)); } int sum (int a, int b) { return a + b; } R 2.00