Find Largest or Biggest Number In Array C Example Program
Definition:
find biggest number in array elements.
Find Largest or Biggest Number In Array Program
/*##Find Largest or Biggest Number In Array*/
/*##Calculation Programs, Array Example Programs*/
#include <stdio.h>
#define ARRAY_SIZE 5
int main()
{
int numbers[ARRAY_SIZE], i, largest;
for (i = 0; i < ARRAY_SIZE; i++)
{
printf("Enter the Number : %d : ", (i+1));
scanf("%d", &numbers[i]);
}
largest = numbers[0];
for (i = 1; i < ARRAY_SIZE; i++)
{
if (largest < numbers[i])
largest = numbers[i];
}
printf("\nLargest /Biggest Number Is : %d", largest);
return 0;
}
Sample Output:
Enter the Number : 1 : 34
Enter the Number : 2 : 54
Enter the Number : 3 : 78
Enter the Number : 4 : 12
Enter the Number : 5 : 56
Largest /Biggest Number Is : 78
C Array Programs
- Single Dimensional Array Example Program in C Programming
- Sum of Array C Example Program
- Read Array and Print Array C Example Program
- Find Largest or Biggest Number In Array C Example Program
- Simple Sorting In Array C Example Program
- Simple Sorting Descending Order In Array C Example Program
- Simple Searching In Array C Example Program
- Simple C Program for Find Array Size
- Matrix Addition 2 D (dimensional) Array Example Example Program
- Matrix Subtraction 2 D (dimensional) Array Example Example Program
- Matrix Multiplication 2 D (dimensional) Array Example Example Program
Read More Articles
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C
- C Introduction
- C Operators
- Storage Classes In C
- C Pointers
- File Management
- C Identifiers
- Loop Control Statements
- Hello World - Simple C Program
- C Array
- Single Character Output Function : putchar()
- C Reserve Words
- C Specific Properties and Implementation
- If else Statement Example Program In C Programming Language
- If Statement Example Program In C Programming Language
- Confusing Array in C ( Array Representation and Initialization )