Q4.c) Write the output that will be generated by the following C program. #include OUTPUT int sum (int a, int b); main
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Q4.c) Write the output that will be generated by the following C program. #include OUTPUT int sum (int a, int b); main
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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!