Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ex10/ex10.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Enter nr. of array element to change: 17
Enter value for element 17: 9
Enter nr. of array element to change: 5
Enter value for element 5: 54
and so on
and so on
Enter nr. of array element to change: 99
The sum of numbers if: 125*/
#include <stdio.h>
Expand All @@ -29,7 +29,7 @@ int main()
int number;
int sum = 0;

printf("Enter 99 to stop.\n");
printf("Enter 99 to stop...\n");

do {
printf("Enter nr. of array element to change: ");
Expand Down