help me understand the loops | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

help me understand the loops

#include<stdio.h> void main() { int i, j, a, n, number[30]; printf("Enter the value of N \n"); scanf("%d", &n); printf("Enter the numbers \n"); for (i = 0; i < n; ++i) scanf("%d", &number[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]); }

10th Apr 2021, 2:53 AM
RAJESH
3 Answers
0
Please put this code in a sololearn playground and share it so it will be more flexible and readable 🙏
10th Apr 2021, 3:03 AM
KingDaniel2004
KingDaniel2004 - avatar
0
KingDaniel2004 yes did itt
10th Apr 2021, 3:17 AM
RAJESH