http://www.thefreecountry.com/
http://freebyte.com/programming/
Those are 2 decent places to start. For windows I'd recommend MinGW, a port of g++, which is what the above bloodshed.net setup uses. As an alternative IDE you might like http://www.parinyasoft.com/
you can use sprintf instead to print to a destination buffer then set the text of the control to the buffer's contents.
int i = 5;
char buf[32];
sprintf(buf, "The number is %d", i);
SetWindowText(hWnd, buf);
http://petra.hos.u-szeged.hu/~aking/www.parinya.ca/ This is very very similar to Visual Studio and is designed around the MinGW port. As far as I know, you can't make Visual C++ work with any other compiler.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.