#include<stdio.h>#include<stdlib.h>#include<time.h>int getmax(int a[]);int main(){ int i,a[30]; srand(time(NULL)); for(i=0; i<50; i++) a[i]=rand()%101; printf("%d",getmax(a[]));}getmax(int a[]){ int b,j; for(j=0;j<30;j+
Bella
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int getmax(int a[]);
int main()
{
int i,a[30];
srand(time(NULL));
for (i=0; i<0 15