Q : Write a program to input a set of numbers into an array. Pass the array to a function that finds and display the largest number.?
Answer :
#include<stdio.h>
#include<conio.h>
/*============================
Girfa Student Help
Find largest no. in array using function
==============================*/
void find(int ar[5]);