Since http://www.smorgasbordet.com/pellesc/ seems to be offline, you can find the Download of Pelles C here in this Forum.
Use OutputDebugString() with debugger.
Thanks, but I did find that i can see the variables with Pelle's C in this way:
When I run the Ide and there is a "fprint...." inside the code then Pelle's Ide closes andshows me nothing.
system("pause");
...void pressENTER( void ){ int c; printf( "press ENTER... "); fflush( stdout ); while ( '\n' != (c=getchar()) && EOF != c ) ; /* void */}...int main( void ){ ... if ( error ) { puts( "*** error" ); pressENTER(); } ...}
...Then I go to the exe file of the program that Pelle's ide has produced and run the programfrom there. Well when the program closes here it shows the black window for a secondso that I can read the variables....