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
5
Answer:
nice hanging in your office yesterday
Answered by
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