Console C

#include 
int main() {
    puts("hello there");
    puts("what is your name?");
    
    printf("press entere to continue");
    getchar();
    puts("It is nice to meet you");
}