I had to create a program that has to work with an array of MAX temperatures, define a constant for the array size, use sort and search algoritms, and write a menu driven program for homework. I am stuck on what's next after the int declaration as such;
#include<stdio.h>
#defineMaX6
int main(void)
{ int temperatures[MAX]= {59,79,99,47,103,71};
Please help, I know I have to for loop it, but I'm stuck.