Ask Question
12 June, 03:38

Write a program in C which asks the user for 10 integers and prints out the biggest one.

+1
Answers (1)
  1. 12 June, 07:04
    0
    Following are the program in c language

    #include / / header file

    int main () / / main function

    {

    int ar[10], k, biggest; / / variable declaration

    printf ("Enter the ten values:/n");

    for (k = 0; k < 10; k++)

    {

    scanf ("%d", &ar[k]); / / user input of 10 number

    }

    biggest = ar[0]; / / store the array index of 0 into biggest variable

    for (k = 0; k< 10; k++) / / finding the biggest number

    {

    if (ar[k] >biggest)

    {

    biggest = ar[k];

    }

    }

    printf (" biggest num is %d", biggest); / / display the biggest number

    return 0;

    }

    Output:

    Enter the ten values:

    12

    2

    4

    5

    123

    45

    67

    453

    89

    789

    biggest num is 789

    Explanation:

    Here we declared an array ar[10] of type int which store the 10 integer values.

    Taking 10 integer input from the user in array ar. After that iterating the loop and finding the biggest number by using if statement and store the biggest number in biggest variable.

    Finally display biggest number.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a program in C which asks the user for 10 integers and prints out the biggest one. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers