icp/oer/courses/c-newcomers/sections/03-lift/01-timesteps/program.c

9 lines
188 B
C

#include <stdio.h>
int main()
{
int CurrentFloor = 0;
// TODO: wrap the next lines in the specified for loop
printf("I'm currently at floor %d\n", CurrentFloor); // \n means newline
}