Quick actions

cmd+k|ctrl+k

Navigation

Languages

Lesson 1c

Snippet info

Language

C

Visibility

public

Author

william-tedjotcahjono

Created

2021-07-03T11:07:47.126927Z

Updated

2021-07-03T11:07:47.126927Z

#include<stdio.h>
int
main(void)
{ printf("The Old Man\n\n");
    printf("When you lost in the woods\n");
    printf("You will meet this man\n");
    printf("An old fat bearded man\n");
    printf("Follow him to his cabin\n");
    printf("He will ask you these questions\n");
    printf("What's your name?\n");
    printf("How have you been?\n");
    printf("Where are you from?\n");
    printf("What are you doing?\n\n");
    printf("He friends with the forest\n");
    printf("Sitting on a rocking chair\n");
    printf("On his front terrace\n");
    printf("A hum from his bushy beard\n");
    printf("Followed by a creak\n");
    printf("Echoing through the woods\n");
    printf("A set pair of eyes\n");
    printf("Covered by the brows\n");
    printf("Gazing beyond the leaves\n");
    printf("Waiting for someone in need");
}
INFO