Person
Lessons
-
- 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...
-
- 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 foun...
-
- 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 be...
-
- 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++? W...
-
- 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...
-
- Lesson
-
Structures
- Description
- In this lesson, we will another composite data type called structure.StructuresIn an array, all the elements are of the same type and are numbered. In a structure, each element,...
-
- Lesson
-
Arrays
- Description
- In this lesson, we will see composite data types i.e. built out of built-in primitive data types. One such data type, we have already seen and that was ‘Class’. Othe...
-
- Lesson
-
Operators in C++
- Description
- Like C or any other programming language, C++ also has operators. C++ operators include all operators of ‘C’ and many others. In this post, we will see what operator...
-
- Lesson
-
All about Identifiers in C++
- Description
- In our everyday, we give names to different things so they can be referred easily. Similarly, in C+, we use identifiers to name user created entities which may be:VariableFuncti...
-
- Lesson
-
Keywords in C++
- Description
- In the previous chapter, we saw the anatomy of a C++ program. Now before writing a simple C++ program, it is important to familiarize us with keywords in C++.The language that w...
-
- Lesson
-
Classes and Objects
- Description
- Last time, we learnt some object-oriented concepts. Now, is the time to see how a class is declared, what is the general structure of a class, how objects are instantiated and u...
-
- Lesson
-
Notes On Servlets
- Description
- I have prepared notes on Servlets from sources like J2EE unleashed by Paul Allen, CodeNotes for J2EE by Grigory Brill, and website javapassion.You can download these notes fro:N...
-
- Description
- In today’s part, we will learn object oriented concepts of C++ (naturally). C++ is an object-oriented language. So, let us start with object itself.Object: An object in C+...