Posts

Showing posts from October, 2017

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...