9 lines
188 B
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
|
||
|
}
|