C Program to find the maximum number in an array YASH PAL, 31 July 2024 In this tutorial, we are going to write a C Program to find the maximum number in an array in C Programming with practical program code and step-by-step full complete explanation. C Program to find the maximum number in an array. #include<stdio.h> #include<conio.h> void main() { int a[5],max,i; clrscr(); printf("Enter element for the array: "); for(i=0;i<5;i++) { scanf("%d",&a[i]); } max=a[0]; for(i=1;i<5;i++) { if(max<a[i]) max=a[i]; } printf("maximum number=%d",max); getch(); } Output Enter elements for array: 5 4 7 1 2 maximum number=7 c coding problems