convert 12345 to 54321 withoutusing strig
Answers were Sorted based on User's Feedback
Answer / abhradeep chatterjee
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
printf("enter a number");
scanf("%d",&i);
for(int n=1;n<=5;n++)
{
j=i%10;
i=i/10;
printf("%d",j);
}
getch();
}
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / pavan kumar b n
By making use of stack data structure.... i.e., first push
all the numbers and then pop them .. since stack is LIFO
order , the numbers get reversed....
| Is This Answer Correct ? | 1 Yes | 0 No |
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
printf("enter a number");
scanf("%d",&i);
for(int n=1;n<=5;n++)
{
j=i%10;
i=i/10;
printf("%d",j);
}
getch();
}
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / ismail
void main()
{
long num, temp;
for(;;) {
printf("Enter number:");
scanf("%ld",&num);
if(num == 0) break;
while(num) {
temp = num%10;
num = num/10;
printf("%ld", temp);
}
printf("\n");
break;
}
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mani bhowmik
void main()
{
int num, temp;
for(;;) {
printf("Enter number:");
scanf("%d",&num);
if(num == 0) break;
while(num) {
temp = num%10;
num = num/10;
printf("%d", temp);
}
printf("\n");
}
getche();
}
So any number will be reversed here. 12345 is five digit
number. Using while we can generalize the number of digits.
The continuous loop is ended when 0 is entered.
| Is This Answer Correct ? | 1 Yes | 5 No |
What are disadvantages of C language.
Why & is used in c?
Is c language still used?
Can you subtract pointers from each other? Why would you?
can anyone please tell about the nested interrupts?
what does ‘segmentation violation’ mean?
What do header files do?
What is use of #include in c?
i want to know aptitude questions,technical questions
Explain the difference between call by value and call by reference in c language?
What are enums in c?
Can a file other than a .h file be included with #include?