Advertisements
Advertisements
प्रश्न
Write a program to sort given array in ascending order.
उत्तर
Program :-
Source code :
//Program to sort given array in ascending order
#include <stdio.h>
#include <conio.h>
void main()
{
int i, j, a, n, array[50];
printf("How many numbers in an array…? \n");
scanf("%d", &n);
printf("Enter the numbers. \n");
for (i = 0; i < n; i++)
scanf("%d", &array[i]);
for (i = 0; i < n; i++)
{
for (j = i + 1; j < n; j++)
{
if (number[i] > number[j])
{
a = number[i];
number[i] = number[j];
number[j] = a;
}
}
}
printf("The numbers arranged in ascending order are given
below \n");
for (i = 0; i < n; ++i)
printf("%d\n", number[i]);
getch( );
}
Output :
How many numbers in an array…? 5 Enter the numbers. 3 1 456 200 150 The numbers arranged in ascending order are given below 1 3 150 200 456 |
APPEARS IN
संबंधित प्रश्न
Write a program to multiply two matrices after checking compatibility.
Write a program to calculate summation of series
1/1! + 2/2! + 3/3! +….+ n/n!
How to create array of structure variable and assign values to its members?
Define pointer and its use. Explain array of pointer with example. Write program to swap the values by using call by reference concept.
Write a program to create two integer of size 8 and 7. Initialize the arrays with random values. Sort the arrays in ascending order with the help of user defined function namely “sort array”. Merge these arrays with the help of another user defined function named “merge arrays” which returns a new array. Program should display the arrays before and after sorting, also the merged arrays.
Write a C program to
i. Create a 2D array [Matrix] [in main function]
ii. Write a function to read 2D array[Matrix]
iii. Write a function that will return true(1) if entered matrix is symmetric or false(0) is not symmetric.
iv. Print whether entered matrix is symmetric or not [in main function]
Comment on dynamic memory allocation. Write a program to read and store N integers in a Array, where value of N is defined by user. Find minimum and maximum members from the Array.