Hi

I am probably posting more noise, but shouldnt the code below print
the prompt first then ask for a char? It works fine under gcc.


#include <stdio.h>

int main()
{
        printf("\nprompt");
        getchar();
        return 0;
}

-- 
http://www.fernski.com

Reply via email to