Excellent sites

Pages: 123
closed account (Dy7SLyTq)
has anyone posted pastedbin yet? i feel like thats an important one
If you put pastebin, then you have to put ideone too.
closed account (G309216C)
My favorite links I used to learn majority of my C++;

Basics
http://www.learncpp.com/
http://www.cplusplus.com/
http://www.cprogramming.com/tutorial.html
http://www.tutorialspoint.com/cplusplus/index.htm

Win32 GUI & Windows Message Architecture
http://www.winprog.org/tutorial/
http://www.functionx.com/win32/
http://www.stromcode.com/2008/03/01/cwin32-tutorials/
http://www.infernodevelopment.com/c-win32-api-tutorial
http://www.win32developer.com/
http://www.zetcode.com/gui/winapi/
http://www.toymaker.info/Games/html/wndproc.html
http://wiki.winehq.org/List_Of_Windows_Messages

Networking - Winsock
http://beej.us/guide/bgnet/
http://www.madwizard.org/programming/tutorials/netcpp/
http://www.tenouk.com/cnwinsock2tutorials.html

Ring0, Kernels & Assembly
http://www.adp-gmbh.ch/win/misc/writing_...river.html
http://forum.sources.ru/index.php?showforum=24
http://www.wasm.ru/
http://four-f.webs.com/
http://noz3001.wordpress.com/2007/05/16/...ogramming/
http://www.freebsd.org/doc/en/articles/g...lprog.html
http://board.flatassembler.net/
http://wiki.osdev.org/NASM
http://www.nasm.us/docs.php
http://www.nasm.us/xdoc/2.10.06/html/nasmdoc0.html
http://docs.cs.up.ac.za/programming/asm/derick_tut/
http://www.drpaulcarter.com/pcasm/

GDI & GDI+
http://tipsandtricks.runicsoft.com/Cpp/B...orial.html
http://www.mvps.org/user32/gditutorial.html
http://www.functionx.com/win32/Lesson11.htm
http://www.winprog.org/tutorial/bitmaps.html
http://www.tenouk.com/visualcplusmfc/vis...mfc4b.html
http://www.relisoft.com/win32/gdileaks.html
http://code.logos.com/blog/2008/09/displ...art_i.html
http://www.codeproject.com/Articles/1988...-beginners
http://supercomputingblog.com/category/c/

Graphics | DirectX, OpenGL & Other Libs
http://www.directxtutorial.com/
http://www.drunkenhyena.com/cgi-bin/directx.pl
http://www.rastertek.com/tutindex.html
http://www.toymaker.info/Games/index.html
http://www.two-kings.de/tutorials/dxgraphics/
http://ogldev.atspace.co.uk/
http://nehe.gamedev.net/
http://lazyfoo.net/SDL_tutorials/index.php
http://www.sfml-dev.org/
http://www.opengl.org/

Operating System Development
http://wiki.osdev.org/Expanded_Main_Page

Game Development & Libraries / Engines
http://irrlicht.sourceforge.net/
http://www.ogre3d.org/
http://www.horde3d.org/
http://www.unrealengine.com/
http://mycryengine.com/
http://unity3d.com/
http://www.sdl.com/
http://alleg.sourceforge.net/
http://www.sfml-dev.org/

closed account (N36fSL3A)
Anyone post lazyfoo.com or sdltutorials.com?
SpaceWorm++, just bookmarked this page.
closed account (G309216C)
@Fredbill30

I did check it in Graphics |DirectX, OpenGl & Other Libs group check through it. Good Luck.

@Veltas

No problem.
closed account (z05DSL3A)
It looks like Fredbill30 has been canned.
Last edited on
It looks like Fredbill30 has been canned.

That's a PSA worthy of its own thread, yet it does nothing but pollute mine. That said, rejoice!
closed account (z05DSL3A)
Catfish4, my mistake. I thought I saw a question aimed at him and was just pointing out there would unlikely be a reply.
Not surprised. I warned him in a thread where he was reported that it would happen, yet he continued to do so.

As for excellent sites, seems all the ones I know have been listed, but this thread is now bookmarked (not to mention in my topics link due to replying).
Don't forget the "Tacking options for this topic:" dropdown at the bottom of the page, if you bookmark the topic there then in your My Topics you can list only the bookmarked topics.
I had forgotten about that. Thanks for that LB.
JLBorges in another thread wrote:
Apache C++ Standard Library User's Guide is perhaps the best tutorial resource on the web.
http://stdcxx.apache.org/doc/stdlibug/noframes.html
Way better than anything that this site has to offer.
I wouldn't use TutorialsPoint.com as I've found they have quite a few errors in their code. The first two that jumped out at me was the assembly tutorial has you install NASM but then says to declare global main main: but it should actually be global _start start: and the C++ random numbers example claims you only need iostream and ctime to do the example, don't even have cstdlib in the includes.
BHXSpecter wrote:
I wouldn't use TutorialsPoint.com as I've found they have quite a few errors in their code. The first two that jumped out at me was the assembly tutorial has you install NASM but then says to declare global main main: but it should actually be global _start start: and the C++ random numbers example claims you only need iostream and ctime to do the example, don't even have cstdlib in the includes.
Every book or tutorial is going to have errors, I'de bet even the all powerful Bjarne Stroustrup has had a few himself. I took a look at that tutorial and it doesn't look to bad, although heavy usage of using namespace std;. Have you considered reporting the errors so they can be fixed?
Yeah I used their contact link and sent an email to them for both fixes.

[EDIT]
Apparently they do want to have it right, because they took down the assembler tutorial this morning.
Last edited on by closed account z6A9GNh0
Topic archived. No new replies allowed.
Pages: 123