Register Login

Login with your site account

Lost your password?

Not a member yet? Register now

WebclassesWebclasses
  • Home
  • Courses
    • Start Learning Here

      • Learn HTML
      • Learn CSS
      • Learn PHP
      • Learn JS
      • Learn SQL
      • Learn C
      • Learn C++
      • Learn 8051

      New Course

      8051 Micro-controller

      8051 Micro-controller

      Free
      Read More
  • Blog
  • Contact Us
    • Home
    • Courses
      • Start Learning Here

        • Learn HTML
        • Learn CSS
        • Learn PHP
        • Learn JS
        • Learn SQL
        • Learn C
        • Learn C++
        • Learn 8051

        New Course

        8051 Micro-controller

        8051 Micro-controller

        Free
        Read More
    • Blog
    • Contact Us
    • Home
    • All courses
    • C ++ Programming

    C ++ Programming

    mahethekiller
    (0 review)
    Free
    C ++ Programming

    C++ Basic Syntax

    When we consider a C++ program, it can be defined as a collection of objects that communicate via invoking each other’s methods. Let us now briefly look into what do class, object, methods and instant variables mean.

    • Object – Objects have states and behaviors. Example: A dog has states – color, name, breed as well as behaviors – wagging, barking, eating. An object is an instance of a class.
    • Class – A class can be defined as a template/blueprint that describes the behaviors/states that object of its type support.
    • Methods – A method is basically a behavior. A class can contain many methods. It is in methods where the logics are written, data is manipulated and all the actions are executed.
    • Instant Variables – Each object has its unique set of instant variables. An object’s state is created by the values assigned to these instant variables.
    C++ Program Structure:

    Let us look at a simple code that would print the words Hello World.

    #include <iostream>
    using namespace std;
    
    // main() is where program execution begins
    
    int main()
    {
       cout << "Hello World"; // prints Hello World
       return 0;
    }

     

    Let us look various parts of the above program:

    • The C++ language defines several headers, which contain information that is either necessary or useful to your program. For this program, the header <iostream> is needed.
    • The line using namespace std; tells the compiler to use the std namespace. Namespaces are a relatively recent addition to C++.
    • The next line // main() is where program execution begins. is a single-line comment available in C++. Single-line comments begin with // and stop at the end of the line.
    • The line int main() is the main function where program execution begins.
    • The next line cout << “This is my first C++ program.”; causes the message “This is my first C++ program” to be displayed on the screen.
    • The next line return 0; terminates main( )function and causes it to return the value 0 to the calling process.
    Compile & Execute C++ Program:

    Let’s look at how to save the file, compile and run the program. Please follow the steps given below:

    • Open a text editor and add the code as above.
    • Save the file as: hello.cpp
    • Open a command prompt and go to the directory where you saved the file.
    • Type ‘g++ hello.cpp ‘ and press enter to compile your code. If there are no errors in your code the command prompt will take you to the next line and would generate a.out executable file.
    • Now, type ‘ a.out’ to run your program.
    • You will be able to see ‘ Hello World ‘ printed on the window.
    $ g++ hello.cpp
    $ ./a.out
    Hello World

    Make sure that g++ is in your path and that you are running it in the directory containing file hello.cpp.

    Semicolons & Blocks in C++:

    In C++, the semicolon is a statement terminator. That is, each individual statement must be ended with a semicolon. It indicates the end of one logical entity.

    For example, following are three different statements:

    x = y;
    y = y+1;
    add(x, y);

    A block is a set of logically connected statements that are surrounded by opening and closing braces. For example:

    {
       cout << "Hello World"; // prints Hello World
       return 0;
    }

    C++ does not recognize the end of the line as a terminator. For this reason, it does not matter where on a line you put a statement. For example:

    x = y;
    y = y+1;
    add(x, y);

    is the same as :

    x = y; y = y+1; add(x, y);
     C++ Identifiers:

    A C++ identifier is a name used to identify a variable, function, class, module, or any other user-defined item. An identifier starts with a letter A to Z or a to z or an underscore (_) followed by zero or more letters, underscores, and digits (0 to 9).

    C++ does not allow punctuation characters such as @, $, and % within identifiers. C++ is a case-sensitive programming language. Thus, Manpower and manpower are two different identifiers in C++.

    Here are some examples of acceptable identifiers:

    mohd       zara    abc   move_name  a_123
    myname50   _temp   j     a23b9      retVal
     C++ Keywords:

    The following list shows the reserved words in C++. These reserved words may not be used as constant or variable or any other identifier names.

    asm else new this
    auto enum operator throw
    bool explicit private true
    break export protected try
    case extern public typedef
    catch false register typeid
    char float reinterpret_cast typename
    class for return union
    const friend short unsigned
    const_cast goto signed using
    continue if sizeof virtual
    default inline static void
    delete int static_cast volatile
    do long struct wchar_t
    double mutable switch while
    dynamic_cast namespace template
    Trigraphs:

    A few characters have an alternative representation, called a trigraph sequence. A trigraph is a three-character sequence that represents a single character and the sequence always starts with two question marks.

    Trigraphs are expanded anywhere they appear, including within string literals and character literals, in comments, and in preprocessor directives.

    Following are most frequently used trigraph sequences:

    Trigraph Replacement
    ??= #
    ??/ \
    ??’ ^
    ??( [
    ??) ]
    ??! |
    ??< {
    ??> }
    ??- ~

    All the compilers do not support trigraphs and they are not advised to be used because of their confusing nature.

    Whitespace in C++:

    A line containing only whitespace, possibly with a comment, is known as a blank line, and C++ compiler totally ignores it.

    Whitespace is the term used in C++ to describe blanks, tabs, newline characters and comments. Whitespace separates one part of a statement from another and enables the compiler to identify where one element in a statement, such as int, ends and the next element begins. Therefore, in the statement,

    int age;

     

    there must be at least one whitespace character (usually a space) between int and age for the compiler to be able to distinguish them. On the other hand, in the statement

    fruit = apples + oranges;   // Get the total fruit

     

    no whitespace characters are necessary between fruit and =, or between = and apples, although you are free to include some if you wish for readability purpose.

    Prev C++ Environment Setup
    Next C++ Character Sets
    • Description
    • Curriculum
    • Instructors
    • Reviews (0)

    C++ is a general-purpose programming language. It has imperative, object-oriented and generic programming features, while also providing facilities for low-level memory manipulation.

    C++ was developed by Bjarne Stroustrup at Bell Labs since 1979, as an extension of the C language as he wanted an efficient and flexible language similar to C, which also provided high-level features for program organization.

    It was designed with a bias toward system programming and embedded, resource-constrained and large systems, with performance, efficiency and flexibility of use as its design highlights. C++ has also been found useful in many other contexts, with key strengths being software infrastructure and resource-constrained applications, including desktop applications, servers (e.g. e-commerce, web search or SQL servers), and performance-critical applications (e.g. telephone switches or space probes).C++ is a compiled language, with implementations of it available on many platforms and provided by various organizations, including the Free Software Foundation (FSF’s GCC), LLVM, Microsoft, Intel and IBM.

    Course Features

    • Lectures 19
    • Quizzes 0
    • Duration 15 hours
    • Skill level All levels
    • Language English
    • Students 20
    • Certificate No
    • Assessments Self
    • Share:
      • Lecture1.1
        C++ Programming Tutorial
        0m
      • Lecture1.2
        C++ Overview
        0m
      • Lecture1.3
        C++ Environment Setup
        0m
      • Lecture1.4
        C++ Basic Syntax
        0m
      • Lecture1.5
        C++ Character Sets
        0m
      • Lecture1.6
        C++ Expressions and Operators
        0m
      • Lecture1.7
        C++ If & Switch Statement
        0m
      • Lecture1.8
        C++ Loops(for,while,do-while)
        0m
      • Lecture1.9
        C++ Arrays
        0m
      • Lecture1.10
        C++ Functions
        0m
      • Lecture1.11
        C++ Strings
        0m
      • Lecture1.12
        C++ Pointers
        0m
      • Lecture1.13
        C++ Date and Time
        0m
      • Lecture1.14
        C++ Data Structures
        0m
      • Lecture1.15
        C++ Classes and Objects
        0m
      • Lecture1.16
        C++ Inheritence
        0m
      • Lecture1.17
        C++ Operator Overloading
        0m
      • Lecture1.18
        C++ Data Encapsulation
        0m
      • Lecture1.19
        C++ Polymorphism
        0m
    mahethekiller

    Reviews

    Average Rating

    0
    0 rating

    Detailed Rating

    5 stars
    0
    4 stars
    0
    3 stars
    0
    2 stars
    0
    1 star
    0

    You May Like

    8051 Micro-controller Read More
    mahethekiller

    8051 Micro-controller

    50
    0
    Free
    C Programming Read More
    mahethekiller

    C Programming

    0
    0
    Free
    SQL Programming Read More
    mahethekiller

    SQL Programming

    0
    0
    Free

    Leave A Reply Cancel reply

    Your email address will not be published. Required fields are marked *

    Latest Courses

    8051 Micro-controller

    8051 Micro-controller

    Free
    Javascript Programming

    Javascript Programming

    Free
    C ++ Programming

    C ++ Programming

    Free

    Recent Posts

    • How to Create a Basic CRUD application Using PHP and MySql
    • Login And Logout Script using PHP Sessions
    • How to Upload an image using Ajax and PHP

    Courses

    • HTML
    • CSS
    • Javascript
    • PHP

    Advanced

    • SQL
    • C Programming
    • C++ Programming
    • 8051 Microcontroller

    Links

    • Home
    • Blog
    • Courses

    Webclasses