Skip to main content

Posts

Showing posts with the label programming language

Introduction to C++ Programming Language

  •Introduction : A program is a sequence of institutions that can be executed by a computer. Every program is written in some programming language. C++ is one of the most powerful programming language available. To write and run C++ programs, you need to have a text editor, and a C++ compiler installed in your computer.   ✓Text Editor A text editor is a software system that allows you to create and edit text files on your computer. Programmers uses text editor to write a programming language such as C++.       ✓Compiler A Compiler is a software system that translates programs into the machine's language, i.e., Binary Code, that the computer's operating system can run them, that translation process is called the compiling the program.       ✓Basic Steps to solve program on a computer 1. Read the program carefully, and decide what are inputs and outputs. 2. Write the instructions by using one of programming language like C++. This coded set of ...