Answer:
void printAltitude(int alt) {
printf("Current altitude is %i meters.", alt)
}
Step-by-step explanation:
First declare the function saying that it won't return anything (void), then you say thatbit uses one parameter that is a Integer number (int). This parameter is stored as "alt", that you use it to print a new line by formatting it with %i.