Some questions for answers

Looking for help, What should I study ,if I want to be a good c++ programmers ?
Start reading some tutorials. Make sure to practize a lot with the concepts you learn, that is the only way to become good in this. Read a lesson, write simple programs using the what you've learned in that lesson, then move on to the next one. You may want to buy/download some books, but I would start with free online tutorials:
http://www.cplusplus.com/doc/tutorial/ (tutorial)
http://home.no.net/dubjai/win32cpptut/html/ (tutorial)
http://www.cplusplus.com/reference/ (reference)
http://cprogramming.com/ (reference)

When you have any questions, you can ask them on this forum. When you understand all the important conceps of C++, you can learn how to handle graphics with eg SDL or OpenGL.
Thanks .There are still something new to me .
May be i should start to learn to handle graphics with eg SDL and OpenGL.
Graphics are the last thing you want to use as a tool to becoming a good programmer. Graphics programming is all about writing fast code at all expense (readability, maintainability, portability).
I would say:

1. Learn the language and the standard library and learn them well.
2. Familiarize with design patterns so that you have practical and maintanable approaches to solve common problems.
3. Learn an API so that you can break out of the console.

From there, the sky's the limit.
Thanks . With those help, I think I will do my best!
Topic archived. No new replies allowed.