Harshit SharmaAug 13, 20202 min readStatements and ListsControl statements in Python: If statement: The condition if evaluates to true the statement will get executed else the program will get...
Harshit SharmaAug 6, 20202 min readINTRODUCTION TO PYTHON.PYTHON:It is a high level programming language with applications to compute artificial intelligence ,computing ,data science and web...
Harshit SharmaJul 30, 20202 min readClasses in C++Class: A class is a way to describe an entity and associated functions with it. In C++ class makes data type that is used to create...
Harshit SharmaJul 23, 20202 min readSTRUCTURE IN C++Structure is a grouping of several variables under one name .A structure is collection of data while a class is a collection of data and...
Harshit SharmaJul 16, 20201 min readARRAY IN C++Array is a collection of variables of the same type referenced under one common name and they include data of homogeneous nature. Syntax:...
Harshit SharmaJul 9, 20202 min readFunctions in C++Functions:Function is a set of module or we can say a subprogram that acts on a data and often return a value.The basic purpose of a...
Harshit SharmaJul 2, 20202 min readStatements in C++Statements:Statement are instructions given to the computer to perform any kind of action the movement of data and making decision....
Harshit SharmaJun 25, 20201 min readData types in C++Data types are classified into three categories: Fundamental Data Types:These are those data types which are already defined in the...
Harshit SharmaJun 18, 20201 min readHow to install Turbo C++1. Download the file from link here https://www.javatpoint.com/cpp-installation 2.Extract the file where everywhere you want to extract....
Harshit SharmaJun 11, 20202 min readTokens :The smallest individual unit in a program is known as Token.TOKEN:The smallest individual unit in a program is known as Token Keywords are the words which convey a special meaning to language...
Harshit SharmaJun 11, 20201 min readIdentify identifiers and check which identifier is correct and which is wrong.Data_rec _data 1data data1 my.file asm switch goto break
Harshit SharmaJun 4, 20201 min readIntroduction to C++When we talk about any programming language there is always the needs to learn the approach on which it is based on and when we talk...