In my simple program, when it executes the getchar method execute before printf method.
Why this happen and how to solve this??
#include <stdio.h>
#include <stdlib.h>
#define SUCCESS 0
void exit_Pro()
{
printf("Press any Key to exit: ");
fflush(stdin);
getchar();
}
int main(int argc, char **argv) {
atexit(exit_Pro);
return SUCCESS;
}
Platform: Window 7 Compiler(IDE): Eclipse CDT
fflush(stdin)- it's UB - see man fflush. – Paul R Sep 13 '12 at 22:37fflush( stdout )– William Pursell Sep 13 '12 at 22:40