Computer Sciences > Gate 2016 Set-1 > C code
What will be the output of the following C program?
void count(int n)
{
static int d = 1;
printf("%d ", n);
printf("%d ", d);
d++;
if(n > 1) count(n-1);
printf("%d ", d);
}
int main()
{
count(3);
}
{
static int d = 1;
printf("%d ", n);
printf("%d ", d);
d++;
if(n > 1) count(n-1);
printf("%d ", d);
}
int main()
{
count(3);
}
Correct : C code
Similar Questions
Consider the following program in C language:
#include <stdio.h>
main()
{
int i;
int *pi = &i;
scanf("%d",...
Consider the following two C code segments. Y and X are one and two dimensional arrays of size n and n × n respectively, where 2 ≤ n ≤ 10. Assume that in both c...
Consider the following C program segment.
#include<stdio.h>
int main( )
{
char s1[7] = "1234", *p;
p = s1 + 2;
...
Total Unique Visitors
Loading......