Skip to main content



      Home
Home » Language IDEs » C / C++ IDE (CDT) » Console Bug(Printf doesn´t put out my content)
Console Bug [message #902233] Thu, 16 August 2012 09:21 Go to next message
Eclipse UserFriend
Hello Community,

this is my first cpp project and it starts very bad.

I can´t see the output in the console.

my Code:

#include <stdio.h>

int main(){

	setvbuf(stdout, NULL, _IONBF, 0);
	setvbuf(stderr, NULL, _IONBF, 0);

	printf("Hello World");

	return 0;

}


other tutorials like:
http://www.eclipse.org/forums/index.php?t=msg&th=197552&start=0&S=2a2b64e1f1404705c0214976bd477428

doesn´t help either.

Please help.

My System:

First setup:
Windows 64-bit,
eclipse 64-bit,
Java 64-bit,
mingw

second setup:
Windows 64-bit,
eclipse 32-bit,
java 32-bit,
mingw
Re: Console Bug [message #902418 is a reply to message #902233] Fri, 17 August 2012 10:14 Go to previous messageGo to next message
Eclipse UserFriend
hi,

in the run configuration (menue Run | Run configurations ..) the hook shall be set at "connect process input & output to a terminal".
I am using Eclipse with Linux. Maybe the menue items are somewhat different. But look for a text like above.
Re: Console Bug [message #902554 is a reply to message #902233] Sat, 18 August 2012 07:32 Go to previous message
Eclipse UserFriend
Windows, C++ and MinGW:

MinGW creates code, that needs the lib libgcc_s_dw2-1.dll during runtime.

If you call the generated exe file from the command-line, you will see the "DLL" missing error!

So add the path to MinGW (maybe C:\MinGW\bin) to the environment variable Path and than try again.

regards,
Klaus
Previous Topic:<iostream> The word '' is not correctly spelled
Next Topic:Tooltips Missing
Goto Forum:
  


Current Time: Tue Jun 24 07:10:57 EDT 2025

Powered by FUDForum. Page generated in 0.04677 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top