C and C++ tutorials for beginners

Hi All,

Here are my favourite C and C++ tutorial URLs. Hope this helps

You may also share if you found similar useful links.

http://cplus.about.com/od/beginnerctutorial/l/blcplustut.htm
http://cplus.about.com/od/introductiontoprogramming/a/cbeginners.htm

http://en.wikibooks.org/wiki/C%2B%2B_Programming
http://en.wikibooks.org/wiki/C_Programming
http://en.wikibooks.org/wiki/C++
http://en.wikibooks.org/wiki/Programming:C_contents
http://en.wikiversity.org/wiki/C%2B%2B

http://linuxconfig.org/c-understanding-pointers
http://msdn.microsoft.com/en-us/library/aa288436%28VS.71%29.aspx
http://publications.gbdirect.co.uk/c_book/

http://www.bloodshed.net/dev/doc/index.html
http://www.computer-books.us/c_3.php
http://www.cplusplus.com/doc/tutorial/

http://www.cprogramming.com
http://www.cprogramming.com/tutorial.html
http://www.cs.rit.edu/~ats/books/ooc.pdf
http://www.cyberdiem.com/vin/tutorials.html

http://www.duckware.com/bugfreec/index.html
http://www.eskimo.com/~scs/index.html
http://www.intelligentedu.com/newly_researched_free_training/C.html
http://www.iu.hio.no/~mark/CTutorial/CTutorial.html
http://www.learncpp.com/

http://www.loirak.com/prog/ctutor.php
http://www.oopweb.com/CPP/Documents/CPointers/VolumeFrames.html
http://www.oopweb.com/CPP/Documents/CProgramming/VolumeFrames.html
http://www.parashift.com/c++-faq-lite/

http://www.referencedesigner.com/tutorials/csharp/csharp_1.php
http://www.silicontao.com/ProgrammingGuide/index.html
http://www.zeuscmd.com/tutorials/cplusplus/index.php

5 Ways You can Learn Programming Faster: http://www.cprogramming.com/how_to_learn_to_program.html
Read our Sample Seminar Reports for preparing a better Seminar report and PPT.
Recommended technology reading: CRM Software
Lets me share some more tutorials for beginner:

Basic Print Message command.

Open Turbo C++ program.
write these commands.
I will explain about these codes later.

PHP Code:
#include <stdio.h>
#include <conio.h>

void main()
{
printf ("Welcome to My House");
getch();


Here <stdio.h> and <conio.h> are header files which contains basic Input Output command functions like printing message aka printf.
# Include command tells Turbo C++ to include the header files <stdio.h> and <conio.h>
If you don't include <stdio.h> (Standard Input Out) file in header than
printf command will not work.


All the main programs should be written inside {
Here, by printf command we are telling Turbo C++ to print a message on
screen "Welcome to My House". However every messege should be written
inside ("...") and remember to close all basic command functions with ;


Last is getch(); function. This function will come to action when you are running the program and it will wait for user to input any key. When you give it an input from keyboard, The program will stop.
Thanks, I should have this back when i learn C++
hello techlib, can you tell me some websites for Java developer beginners?