Here are 2 free C++ compiler that come with IDE (Integrated Development Environment)
1) Dev-C++ (Recommended by this book : "C++ Without Fear")
2) Code::Blocks ( Recommended by my Cprogramming.com)
Pretty easy .. Just follow the note step by step...
Enjoy =)
cpptcl
Saturday, 8 October 2011
Friday, 7 October 2011
Book
Book (beginer to expert) :
1) C++ Without Fear ( second edition) by Brian Overland
2) Practical C++ Programming
3) Programming Perl
4) Effective C++ : 55 specific ways to improve your programs and designs
5) More effective C++ : 35 new ways to improve your programs and designs
Website resource:
1) Cprogramming.com
1) C++ Without Fear ( second edition) by Brian Overland
2) Practical C++ Programming
3) Programming Perl
4) Effective C++ : 55 specific ways to improve your programs and designs
5) More effective C++ : 35 new ways to improve your programs and designs
Website resource:
1) Cprogramming.com
Sunday, 17 April 2011
5 ways you can learn programming faster
Today 18 April 2011, I read an article form
http://www.cprogramming.com/how_to_learn_to_program.html?utm_source=newletter&utm_medium=email&utm_campaign=second-followup
Concept 1: Don't go too fast (Get it right before moving on)
Concept 2: Don't stop progress.
Summary :
1) Look at the example code.
2) Run it.
3) Write your own code asap
4) Learn to use a debugger
5) Seek out more sources.
http://www.cprogramming.com/how_to_learn_to_program.html?utm_source=newletter&utm_medium=email&utm_campaign=second-followup
Concept 1: Don't go too fast (Get it right before moving on)
Concept 2: Don't stop progress.
Summary :
1) Look at the example code.
2) Run it.
3) Write your own code asap
4) Learn to use a debugger
5) Seek out more sources.
Thursday, 24 March 2011
Hello Blogspot
#include <iostream>
using namespace std;
int main()
{
cout << "2011-03-25 5:09am" << endl ;
cout << "Hello Blogspot" << endl;
return 0;
}
using namespace std;
int main()
{
cout << "2011-03-25 5:09am" << endl ;
cout << "Hello Blogspot" << endl;
return 0;
}
Subscribe to:
Posts (Atom)