COMPUTER LANGUAGES
INTRODUCTION C++ LANGUAGES
C++ is a general-purpose object-oriented programming (OOP) language.
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.“
EXAMPLE:
1.#include <iostream>
2.using namespace std;
3.int main()
4.{
5.cout<<"Hello World!";
6.return 0;
7.}
INTRODUCTION C LANGUAGES
• C is a high-level and general-purpose programming language that is ideal for
developing firmware or portable applications.
• C belongs to the structured, procedural paradigms of languages. It is proven,
flexible and powerful and may be used for a variety of different applications.
Although high level, C and assembly language share many of the same attributes.
EXAMPLE:
• #include <stdio.h>
• #include<conio.h>
• int main()
• {
• printf("Hello Worldn");
• return 0;
• }

computer languages

  • 1.
  • 2.
    INTRODUCTION C++ LANGUAGES C++is a general-purpose object-oriented programming (OOP) language. 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.“
  • 3.
    EXAMPLE: 1.#include <iostream> 2.using namespacestd; 3.int main() 4.{ 5.cout<<"Hello World!"; 6.return 0; 7.}
  • 4.
    INTRODUCTION C LANGUAGES •C is a high-level and general-purpose programming language that is ideal for developing firmware or portable applications. • C belongs to the structured, procedural paradigms of languages. It is proven, flexible and powerful and may be used for a variety of different applications. Although high level, C and assembly language share many of the same attributes.
  • 5.
    EXAMPLE: • #include <stdio.h> •#include<conio.h> • int main() • { • printf("Hello Worldn"); • return 0; • }