Page 1 of 1

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
by answerhappygod
Q4 C Write The Output That Will Be Generated By The Following C Program Include Output Int Sum Int A Int B Main 1
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 16 times
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