#include <stdio.h>
int main(void) {
int sum = 0, x = 1; // Initialize sum and x.
while (x != 0) {
printf("\n Enter a number (0 to stop): ");
scanf("%d", &x);
sum = sum + x;
}
printf("Sum of the entered numbers: %d ", sum);
return 0;
}
Here is one sample output. You can enter different numbers and check the output.
Enter a number : 4
Enter a number : 5
Enter a number : 7
Enter a number : 0
Sum of the entered numbers : 16
#include <stdio.h>
int main(void) {
int sum = 0, x = 1; // Initialize sum and x.
while (x >= 0) {
printf("\n Enter a number : ");
scanf("%d", &x);
if (x >= 0)
sum = sum + x;
// Negative number is not added.
}
printf("Sum of the entered numbers : %d ", sum);
return 0;
}
#include <stdio.h>
int main(void) {
int sum = 0, x = 1; // Initialize sum and x.
int max_no = 0;
while (x >= 0) {
printf("\n Enter a number : ");
scanf("%d", &x);
if (x >= 0) {
sum = sum + x;
// Negative number is not added.
if (x > max_no) {
max_no = x;
}
}
}
printf("Sum of the entered numbers : %d ", sum);
printf("\n Highest number : %d ", max_no);
return 0;
}
#include <stdio.h>
int main() {
int n, sum = 0, num;
printf("Enter how many numbers you want to sum: ");
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
printf("Enter number %d: ", i);
scanf("%d", &num);
sum += num;
}
printf("The sum is: %d\n", sum);
return 0;
}
#include <stdio.h>
int main() {
int arr[5] = {10, 20, 30, 40, 50};
int sum = 0;
for (int i = 0; i < 5; i++) {
sum += arr[i];
}
printf("The sum of the array elements is: %d\n", sum);
return 0;
}
Output
The sum of the array elements is: 150
30-04-2022 | |
#include <stdio.h> #include <conio.h> int main() { int grade=74; if (grade>74) { printf(“Passed”); } else if (grade<75 && grade>69) { printf(“Conditional Pass”); } else (grade<70) { printf(“Failed!”); } getch(); return 0; } |