Computer Science, asked by Rukhs, 4 months ago


What will be the output of the following
1. 10 LET A=10
20 LET B=15
30 LET C=A+B
40 PRINT "C"
50 LET A=10
60 LET B=15
70 LET C=A+B
80 PRINT C​

Answers

Answered by shuvam2065
2

Answer:

3

Explanation:

LETC=A+B. #include<stdio.h>

void fun(int);

int main()

{

int a=3;

fun(a);

return 0;

}

void fun(int n)

{

if(n>0)

{

fun(--n);

printf("\n%d",n);

fun(--n);

}

}

Similar questions