C++ BASICS
BASIC OF C++
- C++ is a cross-platform language that can be used to create high-performance applications.
- C++ was developed by Bjarne Stroustrup at Bell labs in 1979, as an extension to the C language.
- C++ gives programmers a high level of control over system resources and memory
FIRST PROGRAM OF C++
- PRINTING “HELLO WORLD”
CODE:
#include<iostream>
using
namespace std;
int
main()
{
cout<<"hello
world";
return
0;
}
OUTPUT:
0 Comments