Ask Question

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

+2
Answers (1)
  1. 27 May, 14:11
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers