print numbers till we want without using loops or condition
statements like specifically(for,do while, while swiches,
if etc)!

Answers were Sorted based on User's Feedback



print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / raghuram.a

//Simple.use recursion!
#include<stdio.h>
int f(int i,int n)
{
i<=n&&printf("\t%d",i)&&f(++i,n);
return 1;
}
main()
{
f(1,100);
return 0;
}

Is This Answer Correct ?    13 Yes 6 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / anil

//To print 1-50 without using any loops or condition statement
main()
{
static int i;
printf("%d \n",i++);
(i%51)&&main();
}

Is This Answer Correct ?    11 Yes 11 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / pree

i wnt to print 1 to 15 without using any loop,conditional
statments ,ternary operators,if conditions
nothing.........is dere any way now to print the numbers????/

Is This Answer Correct ?    2 Yes 2 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / uday

Console.WriteLine(
String.Join(
", ",
Array.ConvertAll<int, string>(
Enumerable.Range(1, 100).ToArray(),
j => j.ToString()
)
)
);

Is This Answer Correct ?    0 Yes 0 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / grasshopper

simple !
create a loop by main()

.i.e call main(previous_num) from main.

till break char is hit.

Is This Answer Correct ?    9 Yes 10 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / prince

main()
{
int n;
printf("enter limit:");
scanf("%i",&n);
print(n);
}

print(int n)
{
n>0?print(n-1):printf("");
printf("\n%d",n);
}

Is This Answer Correct ?    10 Yes 11 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / nain

plz explain above answer ......

Is This Answer Correct ?    3 Yes 5 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / srujana

#include<stdio.h>
void main()
{
int i=0;
printf("value of i",(i>=100)?exit(0):i);
i++;
continue;
}
OR
by using recursion
#include<stdo.h>
int rec(int i)
{
if(i>=100)
return;
else
i++;
return i;
}
void main()
{
rec(1);
}

Is This Answer Correct ?    0 Yes 4 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / srividhya

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void main()
{
int i=0,n,x;
scanf("%d",&n);
label1:
{
printf("%d",i);
i++;
x=i<n?i:0;
exit(x);
continue;
}
getch();
}

Is This Answer Correct ?    8 Yes 15 No

print numbers till we want without using loops or condition statements like specifically(for,do wh..

Answer / akshay babar

#include<stdio.h>
int print(int i)
{
if(i>0)
return print(printf("%d", i--));
else
return 1;
}
main()
{
print(100);
return 0;
}

Is This Answer Correct ?    2 Yes 11 No

Post New Answer

More C Code Interview Questions

void main() { int c; c=printf("Hello world"); printf("\n%d",c); }

2 Answers  


void main() { int *mptr, *cptr; mptr = (int*)malloc(sizeof(int)); printf(ā€œ%dā€,*mptr); int *cptr = (int*)calloc(sizeof(int),1); printf(ā€œ%dā€,*cptr); }

1 Answers  


how can u draw a rectangle in C

53 Answers   Accenture, CO, Codeblocks, Cognizant, HCL, Oracle, Punjab National Bank, SAP Labs, TCS, University, Wipro,


Extend the sutherland-hodgman clipping algorithm to clip three-dimensional planes against a regular paralleiepiped

1 Answers   IBM,


Is the following code legal? void main() { typedef struct a aType; aType someVariable; struct a { int x; aType *b; }; }

1 Answers  






main() { char *p; printf("%d %d ",sizeof(*p),sizeof(p)); }

6 Answers  


void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }

2 Answers  


write a program to Insert in a sorted list

4 Answers   Microsoft,


write a simple calculator c program to perform addition, subtraction, mul and div.

0 Answers   United Healthcare, Virtusa,


main() { int i=-1; -i; printf("i = %d, -i = %d \n",i,-i); }

1 Answers  


Program to find the largest sum of contiguous integers in the array. O(n)

11 Answers  


#include"math.h" void main() { printf("Hi everybody"); } if <stdio.h> will be included then this program will must compile, but as we know that when we include a header file in "" then any system defined function find its defination from all the directrives. So is this code of segment will compile? If no then why?

2 Answers  


Categories