On Fri, Aug 28, 2009 at 5:06 PM, Kenneth Gonsalves<[email protected]> wrote: > hi, > > my daughter is doing state board 12th - she has C++. It looks fairly advanced > too. No doubt she will pass by mugging up everything and spouting it as > expected in state board, but I thought she might as well learn the language > too. Since I know zilch about C++ can luggies advise me on installing some > interactive tool for her to teach herself. > -- > regards > kg > http://lawgon.livejournal.com
Dear kg, google "c++ video lectures" .You will get lot of video lectures like below ,tell her to watch it. This one good way to teach herself. 1). http://idealprogrammer.com/languages/cc/introduction-to-c-stanford-video-tutorials-and-other-lectures/ 2).http://freescienceonline.blogspot.com/2007/09/programming-language-video-lectures.html 3).http://www.torrentreactor.net/torrents/750971/3D-Buzz-introduction-to-C%2B%2B-(video) 4).http://www.youtube.com/watch?v=nziy2_U5JQI 5).http://www.computer-training-software.com/fun-cplusplus.htm you can find lot of very good video lectures on-line . see also this site 6). http://www.java2s.com/Tutorial/Cpp/CatalogCpp.htm it has lot of programs in C , C++ and explanations . you can get collection of good on-line C++ books here . 7).http://www.c4swimmers.esmartguy.com/c4sbooks.htm The way to learn a programming is 1). Read the syntex and Rule 2). Take an example program 3). Type the code yourself. (please don't do copy paste work, it never help you) While reading a tutorial or a book, it is often helpful to type - not copy and paste (even if you can!) 4).Try to understatd each and every bit of the code. 5).Compile the program 5).If it throw error you are very very very lucky because you are going to learn more. 6). Fix the error and compile it . 7). Execute the program and see the output. if output is expected. say yourself very good. Typing it yourself will help you to get used to the typical typing errors that cause problems and it will force you to pay attention to the details of programming syntax. Typing your program will also familiarize you with the general structure of programs and with the use of common commands. After running an example program - and after making certain that you understand how it works - you should experiment with it: play with the program and test your own ideas. By seeing which modifications cause problems and which sections of the code are most important to the function of the program, you should learn quite a bit about programming. take another example repeat it. This is the good way to learn any programming language . installing some interactive tool only helps to become expert in that perticular tool, it never help to learn the program. Thanks & Rg Mohan L _______________________________________________ To unsubscribe, email [email protected] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
