c program to arrange digits in a no in ascending and
descending order
Answer / chand
#include <stdio.h>
int main() {
int num,i=0,size=0,j,temp;
scanf("%d",&num);
int k=num;
while(num>0)
{
int rem;
rem=num%10;
size++;
num/=10;
}
int arr[size];
while(k>0)
{
int rem1;
rem1=k%10;
arr[i]=rem1;
i++;
k/=10;
}
for(i=0;i<size;i++)
{
for(j=i+1;j<size;j++)
{
if(arr[i]>arr[j])
{
temp=arr[i];
arr[i]=arr[j];
arr[j]=temp;
}
}
}
for(i=0;i<size;i++)
{
printf("%d ",arr[i]);
}
return 0;
}
| Is This Answer Correct ? | 22 Yes | 7 No |
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Is printf a keyword?
How can I change the size of the dynamically allocated array?
what is the difference between exit() and _exit() functions?
What are the types of functions in c?
Write a program that accept anumber in words
What does sizeof return c?
praagnovation
What is an array? What the different types of arrays in c?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is the best way of making my program efficient?