Community
Lessons
-
- Lesson
-
Getting Real
- Description
- Getting Real, the book by 37signals, is an awesome resource for those interested in learning agile development.You can buy the PDF, buy the paperback, or read it free online.Disclaimer: I’m in no way affiliated with 37signals. I...
-
- Lesson
-
Union, Typedef, Enums
- Description
- By now, you already know what is an array, what is a structure, and how to use bit-packaged structure. Today, we will see what are unions and when & how we can use them. How you can create your own data types using typedef and how us...
-
- Lesson
-
Functions - Basic Concept
- Description
- Today, we will see yet another concept present in any programming language. Naturally, we will see why at all we need functions. How a function is declared and defined in C++? What new terms are related with functions which are not there...
-
- Lesson
-
More On Functions
- Description
- Inline Functions Functions with small code can be declared as inline.Wherever an inline function is called, actual function code will be replacedSyntax: Put keyword inline before function definition and not in declaration. For e.g.voi...
-
- Lesson
-
C++ As Better C
- Description
- Before moving on further in advanced C++, it is better to ensure us that C++ is nothing but an advanced form of C. Those of you who came from Pascal background may have not found learning C difficult as it was mere syntax change. But whe...
-
- Lesson
-
More On Classes
- Description
- OOP encapsulates data(attributes) and functions(behaviors) into packages called classes.A class is a user-defined data type that acts as a blueprint for instantiating any number of objects of that class.Classes have property of informati...
-
- Lesson
-
Failure is not an option
- Description
- Few days back, I got stuck with a problem and was quite depressed at the inability to solve it. The deadline was approaching nearby and I lost all hope of getting that problem solved. To change my mood, I logged on to my gmail acco...
Community Content Actions
Quote of The Moment
“The greatest discovery of my generation is that man can alter his life simply by altering his attitude of mind.”
—
William James