Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[Cdt-launch-inbox] [Bug 102043] Console Output Does Not Appear When Launching An Application

https://bugs.eclipse.org/bugs/show_bug.cgi?id=102043





------- Additional Comments From une-v@xxxxxxxxxx  2005-10-14 16:43 -------
(In reply to comment #21)
I'm experiencing the same buggy behaviour (Eclipse 3.1.1, CDT 3.0.0).

Feeding a return to the console actually starts my helloworld app, so the 
application behaves like it starts with fgetc(stdin);

#include <stdio.h>
int main()
{
    //fgetc(stdin);
    printf("Hello World\n");
    
    //block until user types something
    fgetc(stdin);
    return 0;
}




------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Back to the top