C++ (pronounced see plus plus) is a general purpose programming language that is free-form and compiled. It is regarded as an intermediate-level language, as it comprises both high-level and low-level language features. Developed by Bjarne Stroustrup starting in 1979 at Bell Labs, C++ was originally named C with Classes, adding object-oriented features, such as classes, and other enhancements to the C programming language. The language was renamed C++ in 1983, as a pun involving the increment operator.
A C++ program is a collection of commands, which tell the computer to do "something". This collection of commands is usually called C++ source code, source code or just code. Commands are either "functions" or "keywords". Keywords are a basic building block of the language, while functions are, in fact, usually written in terms of simpler functions--you'll see this in our very first program, below. (Confused? Think of it a bit like an outline for a book; the outline might show every chapter in the book; each chapter might have its own outline, composed of sections. Each section might have its own outline, or it might have all of the details written up.) Thankfully, C++ provides a great many common functions and keywords that you can use.
Here is C++ Programming - Video Tutorials in Urdu & Hindi
- C++ Programming - Part-1 Installation Compiler for C++!
- C++ Programming - Part-2 Basic Syntax
- C++ Programming - Part-3 Variables
- C++ Programming - Part-4 Modify Variables
- C++ Programming - Part-5 User Input
- C++ Programming - Part-6 Increment & Decrement Operators
- C++ Programming - Part-7 if & else Statement
- C++ Programming - Part-8 if, elese if & else Statement
- C++ Programming - Part-9 Conditional Operators
- C++ Programming - Part-10 Switch & Case Staement
- C++ Programming - Part-11 For Loop
- C++ Programming - Part-12 While Loop
- C++ Programming - Part-13 Do While Loop
- C++ Programming - Part-14 Gets & Puts
- C++ Programming - Part-15 Arrays
- C++ Programming - Part-16 2D Arrays
- C++ Programming - Part-17 Operation with 1D Arrays part-1
- C++ Programming - Part-18 Operation with 1D Arrays part-2
- C++ Programming - Part-19 Array Initialization Part-1
- C++ Programming - Part-20 Array Initialization Part-2
- C++ Programming - Part-21 Functions
- C++ Programming - Part-22 Functions returning value
- C++ Programming - Part-23 Call by value & Call by reference
- C++ Programming - Part-24 Calling function with Arrays
- C++ Programming - Part-25 Recursion
- C++ Programming - Part-26 Structures Part-1
- C++ Programming - Part-27 Structures Assignment
- C++ Programming - Part-28 Nested Structures
- C++ Programming - Part-29 Arrays of Structures
- C++ Programming - Part-30 Various Programming Paradigms
- C++ Programming - Part-31 Object Oriented programing
- C++ Programming - Part-32 Introduction to CLASS
- C++ Programming - Part-33 Outside Class Definition
- C++ Programming - Part-34 Type of Class Functions
- C++ Programming - Part-35 Memory Allocation of Objects
- C++ Programming - Part-36 Array of Objects
- C++ Programming - Part-37 Objects as Function Arguments
Post a Comment