how to print
1 2 3 4 5 6 7 8 9 10 9 8 7 6 5 4 3 2 1
using any loop(for or while) only once(only 1 loop) and
maximum 2 variables using C.
Answers were Sorted based on User's Feedback
int i = 1,j=1;
do
{
printf("%d",i);
if (j<10)
i++;
else
i--;
j++;
}while(j<20);
| Is This Answer Correct ? | 63 Yes | 9 No |
Answer / ajay karanam
int main()
{
int b=0,a=20;
for(b=0;b<20;b++,a--)
{
if(b>a)
{
printf("%d\n",a);
}
else if(b<a)
{
printf("%d\n",b+1) ;
}
}
return 0;
}
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / deva
void main()
{
int a = 1, b = 9;
for(;a <= 10 || b >= 1;)
{
if( a <= 10)
{
printf("%d ", a++);
}
else if(b >= 1)
{
printf("%d ", b--);
}
}
}
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / prasad
int i=1,j=9;
while(i<=20)
{
if(i<=10)
{
printf("%d ",i);
i++;
}
else
{
printf("%d ",j);
j--;
}
if(j==0)
break;
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / chand
main()
{
int j=0,i=1;
for(i;i<20;i++)
{
if(i<=10)
{
j++;
printf("%d",i);
}
else if(j<=10)
{
j--;
printf("%d",j);
}
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / sanjay bhosale
int i=1,a=1;
while(i<20)
{
if(i<10)
printf("\t%d",a++);
else if(i==10)
printf("\t%d",a);
else
printf("\t%d",--a);
i++;
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / taizul
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
for(int i = 1; i < 20; i++){
if(i>=10){
printf("%d ",(10-(i%10)));
}
else{
printf("%d ",i);
}
}
return 0;
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / joteen patro
void f1(int i);
void f2(int i);
void main()
{
int i=1;
while(i>0)
{
if(i<=10)
f1(i);
if(i==10)
f2(i);
}
}
void f1(int i)
{
if(i<10){
printf("%d",i);
f1(i++);
}
else
break;
}
void f2(int i)
{
if(i>0)
{
printf("%d",i);
f2(i--)
}
else
break;
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / boleto
int main(void)
{
int i,j=1;
for(i=10;i>1;)
{
if(j<=10)
{
printf("%d ",j++);
}
else
{
printf("%d ",i--);
}
}
return 0;
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / apsita surana
#include<stdio.h>
void main()
{
int i,j; //two variables
for(i=1,j=9;i<=19;i++)
{
if(i<=10)
{
printf("%d ",i);}
else
{
printf("%d",j);
j--;
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Is the following code legal? typedef struct a { int x; aType *b; }aType
int aaa() {printf(“Hi”);} int bbb(){printf(“hello”);} iny ccc(){printf(“bye”);} main() { int ( * ptr[3]) (); ptr[0] = aaa; ptr[1] = bbb; ptr[2] =ccc; ptr[2](); }
write a c program to input initial & final time in the format hh:mm and find the time intervel between them? Ex inputs are initial 06:30 final 00:05 and 23:22 final 22.30
main() { unsigned int i=65000; while(i++!=0); printf("%d",i); }
programming in c lanugaue programm will errror error with two header file one as stdio.h and other one is conio.h
main() { char *p; printf("%d %d ",sizeof(*p),sizeof(p)); }
main() { static int a[3][3]={1,2,3,4,5,6,7,8,9}; int i,j; static *p[]={a,a+1,a+2}; for(i=0;i<3;i++) { for(j=0;j<3;j++) printf("%d\t%d\t%d\t%d\n",*(*(p+i)+j), *(*(j+p)+i),*(*(i+p)+j),*(*(p+j)+i)); } }
which function is used to clear the buffer stream on gcc? for example: I wrote following code on gcc #include<stdio.h> int main(void) { char ch; int a,b; printf("\nenter two numbers:\t"); scanf("%d%d",&a,&b); printf("enter number is %d and %d",a,b); printf("\nentercharacter:\t"); scanf("%c",&ch); printf("enter character is %c",ch); return 0; } in above progarm ch could not be scan. why?plz tell me solution.
How we print the table of 3 using for loop in c programing?
Code for 1>"ascii to string" 2>"string to ascii"
1 Answers Aricent, Global Logic,
int DIM(int array[]) { return sizeof(array)/sizeof(int ); } main() { int arr[10]; printf(“The dimension of the array is %d”, DIM(arr)); }
void main () { int x = 10; printf ("x = %d, y = %d", x,--x++); } a. 10, 10 b. 10, 9 c. 10, 11 d. none of the above