#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