Posts

Showing posts from July, 2022

Other Sites

Other Sites W3Schools Javatpoint Tutorialpoint GeeksForGeeks ElectronicsTutorial itsARC News Portal

Raspberry Pi

COMING SOON

Arduino

COMING SOON

C++ Comments

  C++ Comments Comments are the statements that are not executed by the compiler. It is used to provide explanation of code and program. Comments are of two types 1)  Single line comment //               2) Multi line comment /*          */ 1) Single line comment used to expain a single line statement. it starts from double slash // example int i=0 ; //i is a variable 2) Multi line comment used to expalin multiple line of code. it starts from /*  and close with */ /* declare a variable and  display it on screen */ example int i=10;   cout<< i<<endl;  

Jumping Control Statements

Jumping Jump statements are used to interupt the flow of program or exit from the particular sections of the progam.They are of 3 types which are mentioned below:- goto statement continue statement break statement

Looping Control Statements in C++

  Looping A set of statement execute again and again until a particular condition is satisfied. It helps in save time, reduce errors and they make our coder shorter. Loops are of 3 Types for loop while loop do-while loop

Branching Control Statement in C++

  Control Statement in C++ Control statements are that change the flow of execution of statements. To control the sequence of operations in a program Control Statements are used.

C++ Identifiers

                                                                    C++ Identifiers Identifiers are the name that identifies or refer's the name of  the variable, function, arrays, user-defined                      data-type. Identifiers are the important elements in a Program. Constants Variable Functions Labels Data-Types

C++ Operators

C++ Operators

C++ Keywords

Image
C++ Keywords

C++ Data types

Image
  C++ Data types

C++ variable

  C++ Variable Variable is the name of memory location where we store value. It is used to store data. Its value can be changed and it can be reused many times.

Basic Concepts of C++(syntax)

  Basic Concept + Syntax of C++ Programming

C++ Installation

C++ Installation You can install any of IDE and may use Text Editiors like VS Code, Code:Blocks, Turbo C++, Dev C++, Eclispse and many more... but, i recommended you to use Dev C++ because it's comes with pre-installed compiler and easier to use and easier for beginers you may also installed Turbo C++ , benefit of Turbo C++ is that in this we can use graphic.h library file. Official Links for C++ IDE, Compilers to Installation Dev C++ VS Code Code:Blocks Turbo C++ Eclipse Download MingGW

Features of C++

Features of C++ Object Oriented The main upgradation from C to C++ is object-oriented programming. It follows concept of oops like polymorphism, inheritance, encapsulation, abstraction. This makes development and maintenance easier. Class Object Polymorphism Inheritance Encapsulation Abstraction Simple C++ provides a structured approach wherein you can break the problem into parts and design the solution modularly. It provides you a rich set of library functions that you can use while implementing the solution. If you have worked with C language, then moving to C++ would be a very smooth transitioning. The syntax is almost similar with minute changes. Platform Dependent Platform dependent language means the language in which programs can be executed only on that operating system where it is developed & compiled. It cannot run or execute it on any other operating system. C+

C++ Tutorial

  C++ Tutorial C++ language is a superset of the C language. C++ was first designed as an extension of C language. Thus in addition to the procedural language features derived from C, C++ also supports object-oriented programming features like inheritance, polymorphism, abstraction, encapsulation, etc
  JOIN US