453,536 views
19 votes
19 votes
Write the output of the following:
DECLARE FUNCTION
program
SUM (A, B)

User Zachary Abresch
by
2.3k points

1 Answer

25 votes
25 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 Retif
by
3.2k points