Print all numbers which has a certain digit in a certain
position
eg:
number=45687
1 number=4
2 number=5
etc
Answers were Sorted based on User's Feedback
Answer / vaibhav
#include<stdio.h>
#include<conio.h>
void main()
{
int n,t,i,cnt=1;
clrscr();
printf("\nEnter The No.");
scanf("%d",&n);
while(n%10!=0)
{
n=n%10;
t=n/10;
printf("\n %d number= %d",cnt,t);
cnt++;
}
getch();
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / eranna
#include<stdio.h>
#include<conio.h>
void main()
{
int n,t,cnt=1;
clrscr();
printf("\nEnter The No.");
scanf("%d",&n);
while(n%10!=0)
{
t=n%10;
n=n/10;
printf("\n %d number= %d",cnt,t);
cnt++;
}
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / eranna kybarshi
#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,t,cnt=0;
int num[10];
clrscr();
printf("\nEnter The No.");
scanf("%d",&n);
while(n%10!=0)
{
t=n%10;
num[cnt]=t;
n=n/10;
cnt++;
}
num[cnt]='\0';
for(i=cnt-1;i>-1;i--)
printf("\n %d number= %d",cnt-i,num[i]);
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vignesh1988i
sorry ... i could not understand ur question
properly....... can you post it again.... if
possible!!!!!!!!!!!!please
| Is This Answer Correct ? | 0 Yes | 1 No |
in malloc and calloc which one is fast and why?
How to removing white spces in c programming only bu using loops
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Tell me when is a void pointer used?
How can I increase the allowable number of simultaneously open files?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
which one is better structure or union?(other than the space occupied )
ATM machine and railway reservation class/object diagram
How can I find the modification date and time of a file?
Can you apply link and association interchangeably?
Write a programe print the sum of series 0,1,2,.....10