jazykc  2013.3
upoljazykc
 All Classes Files Functions Variables Typedefs Macros Pages
PAUSE.c
Go to the documentation of this file.
1 
10 #include <stdio.h>
11 #include <stdlib.h>
12 
13 #define PAUSE do { fputs("Press any key to continue... ", stdout); getchar(); } while(0)
14 
15 int main(void) {
16 
17 //TODO: testovat isatty() ???
18  fputs("Press any key to continue... ", stdout);
19  getchar();
20 
21  PAUSE;
22  return 0;
23 }
24 
25