Posts

DAY 3

Characteristics of C++: C++ is not a purely object-oriented language but a hybrid that contains the functionality of the C programming language. This means that you have all the features that are avail- able in C: ■ universally usable modular programs ■ efficient, close to the machine programming ■ portable programs for various platforms. The large quantities of existing C source code can also be used in C++ programs. C++ supports the concepts of object-oriented programming (or OOP for short), which are: ■ data abstraction, that is, the creation of classes to describe objects ■ data encapsulation for controlled access to object data. ■ inheritance by creating derived classes (including multiple derived classes) ■ polymorphism (Greek for multiform), that is, the implementation of instructions that can have varying effects during program execution. Various language elements were added to C++, such as references, templates, and excep- tion handling. Even though these elements of the l...

DAY 2

Image
Basic structure of c++: The format of writing program in c++ is called its structure. The basic structure of c++ program is very flexible. It increase the power of the language. It consists of the following parts. Preprocessor directive: Its an instruction given to the compiler before the execution of actual program. Preprocessor directive is also known as compiler directive. The preprocessor directives are processed by a program known as preprocessor. Its part of c++ compiler. It modifies c++ source program before compilation. The semi colon is not used at the end of preprocessor directive. The preprocessor directive starts with a hash symbol #. These directives are written at the start of the program. The following preprocessor directive is used to include header files in the program. #include <iostream> The above statement tells the computer to include header file that is " iostream " in source program before compiling it. Header files: Header files a...

DAY 1

WHEN TO USE C++? WHEN NOT TO USE C++? BRIEF ABOUT C++. IMPORTANT DEFINITIONS. COMPILING/RUNNING A PROGRAM. C++ IS A SUPERSET OF C. This video include all of the above. Must watch it to understand the beginning of C++ SETTING UP A C++. As in the video I have downloaded the turbo c++ editor. but I recommend an editor that is dev c++. download link is given below. https://sourceforge.net/projects/orwelldevcpp/      
This privacy policy has been compiled to better serve those who are concerned with how their 'Personally Identifiable Information' (PII) is being used online. PII, as described in US privacy law and information security, is information that can be used on its own or with other information to identify, contact, or locate a single person, or to identify an individual in context. Please read our privacy policy carefully to get a clear understanding of how we collect, use, protect or otherwise handle your Personally Identifiable Information in accordance with our website. What personal information do we collect from the people that visit our blog, website or app?     We do not collect information from visitors of our site. or other details to help you with your experience When do we collect information? We collect information from you when you register on our site or enter information on our site. How do we use your information? We may use the information we c...

About C++

Image
we are going to start with a basic concept Basic concepts: what is c++? C++ is a general-purpose object-oriented programming (OOP) language, developed by Bjarne Stroustrup, and is an extension of the C language. It is therefore possible to code C++ in a "C style" or "object-oriented style." C++ is considered to be an intermediate-level language, as it encapsulates both high- and low-level language features. Initially, the language was called "C with classes" as it had all the properties of the C language with an additional concept of "classes." However, it was renamed C++ in 1983. C++ is one of the most popular languages primarily utilized with system/application software, drivers, client-server applications and embedded firmware. what is programming language: A programming language is a set of commands, instructions, and other syntax use to create a software program. Types of programming languages: i) High level and ii)Low level l...
Email: kmaaz3542@gmail.com

INTRODUCTION

Image
 . Hi everyone My name is Maaz Khan . I am the student of COMSATS UNIVERSITY .    You can search the institute here.      http://islamabad.comsats.edu.pk/ .   Recently  I am studying SOFTWARE ENGINEERING and I am at the final semester and    after four month I will be done with that. .  c++:   This site is related to c++ programming language. And this is specialy for the beginners.    Here I will provide the complete course day by day which will be in most easiest way.    and you will have no problem in learning with that. . Tips and Tricks:   Here you people will also be provided so tips and tricks related to programming that    will be so helpful to you people

Language processors:

Image
As we know that computer only understand machine language so the program written in high level language is not directly understandable to computer. So we use language processor or translation software to convert high level language into machine language. Source code or Source program: The program written in high level language is called source code or source program while, Object code or Object program: the program written in low language is called object code or object program. TYPES OF LANGUAGE PROCESSOR: i) Compiler, ii) Interpreter and iii) Assembler: Compiler: A compiler is a special program that processes statements written in a particular programming language and turns them into machine language or "code" that a computer's processor uses. When executing (running), the compiler first parses (or analyzes) all of the language statements syntactically one after the other and then, in one or more successive stages or "passes", builds the output co...