-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhileLoop.c
119 lines (93 loc) · 2.09 KB
/
WhileLoop.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Name Ankesh Sharma
// Date 03-01-2024
// Language C
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
// int forloops();
// // int whileloop();
int qsortcomparrison();
// int sumnatural(int n);
// int dowhileloop();
int main(){
// int n;
// printf("Enter the value of n : ");
// scanf("%d",&n);
// sumnatural(n);
qsortcomparrison();
// // whileloop();
// // dowhileloop();
// forloops();
}
// int whileloop(){
// int i=0;
// while(i<0){
// printf("\nThe count is %d ",i+1);
// i++;
// }
// printf("Condition is not true you ediot!!!!!!!");
// }
// int dowhileloop(){
// int i=1;
// do
// {
// printf("\nThe count is %d ",i+1);
// while(i<5){
// printf("i is true");
// i++;
// }
// i++;
// } while (i<10);
// }
// int forloops(){
// for(int i=0;i<=5;++i){
// printf("The value of i is %d ",i);
// }
// }
// #include <stdio.h>
// int main()
// {
// int i = 1;
// // Example using post-increment (i++)
// int result_post = i++ * 2;
// printf("Result using post-increment: %d\n", result_post); // Output: 0
// // Reset i to 0 for the next example
// i = 1;
// // Example using pre-increment (++i)
// int result_pre = ++i * 2;
// printf("Result using pre-increment: %d\n", result_pre); // Output: 2
// return 0;
// }
int sumnatural(int n)
{
int sum = 0;
float avg;
int arr[n];
printf("Enter the value of arrays : ");
for (int i = 0; i < n; i++)
{
scanf("%d",&arr[i]);
sum+=arr[i];
}
avg = sum/(float)n;
printf("The sum is %d and the average is %.2f",sum,avg);
}
// 25+21+14+19
int compare(const *a, const *b) {
return (*(int *)a - *(int *)b);
}
int qsortcomparrison(){
int n;
printf("Enter the value of n : ");
scanf("%d",&n);
int arr[n];
for(int i=0;i<n;i++){
scanf("%d",&arr[i]);
}
qsort(arr,n,sizeof(int),compare);
printf("Sorted array in ascending order:\n");
for (int i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
return 0;
}