Help me in solving UWCOI20A problem

My issue

Given a list of
N
N integers, representing height of mountains. Find the height of the tallest mountain

My code

#include <stdio.h>

int main() {
	// your code goes here

}


Learning course: BCS301: Data structures
Problem Link: https://www.codechef.com/learn/course/abesit-dsa/ABESITDS06/problems/UWCOI20A

include <stdio.h>
int main() {
int heigth={23,43,11,65,77,22,13};
int size= sizeof(heigth)/sizeof(heigth[0]);
int max=-1;
int i=0;
for(i=0;i<size;i++){
if(heigth[i]>max){
max=heigth[i];
}
}
printf(“MAX HEIGTH: %d”, max);

return 0;
}