pause until a key is pressed : Console Read Char « Console « C / ANSI-C






pause until a key is pressed


#include <stdio.h>

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


           
       








Related examples in the same category

1. Get the next character from stdin: how to use getchar
2.Read a char from console: getchar()
3.Read a char and check it value
4.Use getchar() in for loop
5.Get char from console and display it: getche()
6.Get char from the console