Discover millions of ebooks, audiobooks, and so much more with a free trial

Only $11.99/month after trial. Cancel anytime.

Computer Practices Using C++
Computer Practices Using C++
Computer Practices Using C++
Ebook236 pages1 hour

Computer Practices Using C++

Rating: 0 out of 5 stars

()

Read preview

About this ebook

This book covers the contents of Computer practices using C++ course for B.Tech Computer Science and Information technology courses of the Maulana Abul Kalam University of Technology.  Most of the other technology universities around the country have a similar courses as well. Basic computer skills, particularly programming skills are essential for students of technology. All engineering students have a growing need for grooming in programming concepts as computers become an essential tool for study, research and other professional activities. They will need this skill not only for rest of their B Tech programs but also for higher studies, and during their working life. This book includes solved questions to illustrate the concepts, wherever necessary. Clear understanding of the concepts illustrated here, will be useful not only for doing well in examinations but also in technical interviews with recruiters.The study material in this book is divided into 17 chapters covering the prescribed syllabus. Students of other technology universities with a similar courses can also benefit from this book.
Key features:
1. lucid and clear explanations
2. Easy language and up to date information
3. Uniform style of presentation
4. Detailed coverage of syllabus
5. Excellent examination guide
6. Interview questions and answers
7. Point wise summary at the end of each chapter
8. Detailed Coverage of syllabus

LanguageEnglish
PublisherAmazon
Release dateNov 7, 2016
ISBN9781537031606
Computer Practices Using C++

Read more from Ramkrishna Ghosh

Related to Computer Practices Using C++

Related ebooks

Teaching Methods & Materials For You

View More

Related articles

Reviews for Computer Practices Using C++

Rating: 0 out of 5 stars
0 ratings

0 ratings0 reviews

What did you think?

Tap to rate

Review must be at least 10 words

    Book preview

    Computer Practices Using C++ - Ramkrishna Ghosh

    1. Fundamentals of C++

    ––––––––

    1.1 Introduction

    In the early 1970s, Dennis Ritchie of Bell Laboratories was engaged in a project to develop a new operating system.  Ritchie discovered that in order to accomplish his task he needed the use of a programming language that was concise and that produced compact and speedy programs.   This need led Ritchie to develop the programming language called C.

    In the early 1980's, also at Bell Laboratories, another programming language was created which was based upon the C language.  This new language was developed by Bjarne Stroustrup and was called C++.  Stroustrup states that the purpose of C++ is to make writing good programs easier and more pleasant for the individual programmer.  When he designed C++, he added OOP (Object Oriented Programming) features to C without significantly changing the C component.  Thus C++ is a relative (called a superset) of C, meaning that any valid C program is also a valid C++ program.

    There are several versions of the C++ language, of which Visual C++ is only one.  Other dialects include Borland C++, Turbo C++, and Code Warrior (Mac).  All of these software packages enable you to create computer programs with C++, but they all implement the C++ language in a slightly different manner.  In an attempt to maintain portability of both the C and C++ languages, the American National Standards Institute (ANSI) developed a standard of consistency for C and C++ programming.  While we will be working primarily with this ANSI standard, we will also be examining the idiosyncrasies of Microsoft Visual C++ 6.0.

    1.2 The Mechanics of Creating a C++ Program

    Enjoying the preview?
    Page 1 of 1