what actualy C and C++ is ????

in computer •  4 years ago  (edited)

code-1076536_1920.jpg
#PROGRAMING LANGUAGE C AND C++

Hey people, let me tell you in simple words that C and C++ are high-level computer programming language which was developed in 1972 and 1980 respectively. these languages are structured procedural programing languages. Although c is a mid-level programing language C++ is a high-level programing language.

syntax of c consists of the header file, main function, and program code. Let me show you a simple c program.

.#include<stdio.h>

Int (main){
print("hello world");
return 0;
}
output is : Hello world.

#lets see a basic example of c++ language#
// Your First C++ Program

.#include <iostream.h>

int main() {
std::cout << "hello world";

return 0;

}
output is:hello-world

uses:

1. c and c++ are used in to develop operating system.

2.It is also used to develop graphics.

3.It is use to devlop system application

4.It is also used to devlop database

5.used in network drivers

6.Interpreters.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!