View Full Version : Need TurboC/C++ ver 3.0



saurabh1985
29th May 2006, 19:37
Guys i need Turbo C for learning basic C programming.Can anybody post it here?It would be great,thanks.

NieFeng
12th June 2006, 15:10
Hi, I believe Microsoft is giving free download for their Visual C++ 2005 Express Edition. Try that out if you want to learn C or C++. Seriously speaking C/C++ is a much too flexible language to learn if it is your first language, I hope you have a book to guide you along. Enjoy programming in C!

::EDIT::
Oh, you can always post here if you meet any problem, I am free to help!

lollypop
17th June 2006, 18:24
can i koe wat's e diff between 'printf' & 'cout/cin'?

looksvivek
29th July 2007, 10:22
printf was used in c whereas cout/cin are used to output/input respectiely in c++.
syntax:

1. cout<<"hello world";
\n - newline
\t - tab
these can be used to insert newline and tab

2. cin>>age;