Computer Science, asked by venkyyadav5449, 4 months ago

what will be the output of the following
code?
#include<stdio.h>
int main()
{
int i=(1,2,3);
printf("%d",1);
return 0;
}

Answers

Answered by Anonymous
5

Answer:

nice hanging in your office yesterday

Answered by Nishareddy1430
2

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