24.5k views
1 vote
Write the output of the following:
DECLARE FUNCTION
program
SUM (A, B)

1 Answer

4 votes

Answer:

#include<studio.h>

Int main()

{

Int a=10, b= 20, sum;

Sum =a+b;

Printf(“ sum = %d”, sum );

Return 0;

}

Step-by-step explanation:

Let's Assume A = 10 and B = 20

User Doppio
by
4.5k points