2018-05-05 23:19:22 +01:00

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
}