- Q4 C Write The Output That Will Be Generated By The Following C Program Include Output Int Sum Int A Int B Main 1 (15.5 KiB) Viewed 14 times
Q4.c) Write the output that will be generated by the following C program. #include OUTPUT int sum (int a, int b); main
-
- Site Admin
- Posts: 899603
- 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