Topics
Operating System
- Introduction to Operating System (OS)
- Idea of an Operating System
- Windows NT
- LINUX
- File Systems and Its types
- File Operations
- Access Methods and its types
- Allocation Methods
- Concepts Related to Process Management
- Concepts related to memory management
- Basics of Graphical User Interface (GUI)
- Access and Security Aspects of O.S.
Data Structures
C++ Programming
- Introduction to C++ Programming
- Idea Behind Object-Orientated Programming
- Object-orientated programming approach
- Object-Oriented Terms and Concepts
- Classes and Objects
- Constructors and Destructors
- Functions in C + +
- Arrays in C++
- Pointers in C++
- References in C++
- Strings in C++
- Inheritance
- Virtual functions and polymorphism
- Friends in C++
- Operator overloading and type conversions
- Files and Stream
HyperTex Markup Language (HTML)
- Introduction to Functions in C++
- Inline functions
- Function overloading
- Default arguments
Functions in C + +
Function Prototyping
Function prototyping is one improvement added to C++ functions. The prototype is a declaration that defines the arguments passed to the function and type of value returned by the function. It has the form :
type function - name (argument list) ;
Note that each argument variable must be declared independently inside the parentheses. For example: float volume (int x, float y, float z) ;
Inline functions
Inline functions save memory and execution time by placing the function's code directly in the program instead of jumping to it. This eliminates the overhead of passing values and control during function calls.
Syntax:
inline function_header
{
function_body
}
Function overloading
Overloading uses the same name for different purposes. Function overloading allows creating functions with the same name but different arguments, performing various tasks. This function polymorphism determines the correct function based on the arguments, not the function type.
Default arguments
C + + allows us to call a function without specifying all its arguments. In such cases, the function assigns a default value to the parameter which does not have a matching argument in the function call. Default values are specified when the function is declared. For example: float amount (float principal, int period, float rate = 0.15);
Only trailing arguments can have default values i.e. we must add defaults from right to left. We cannot provide a default value to an argument in the middle of list.