C++ is a middle-level programming language. It is developed in 1979 by Bjarne Stroustrup at Bells laboratory. C++ run on all the operating systems like Windows, Mac, and Linux also with he help of some applications.
How to write Hello World program in C++
#include <iostream.h>
#include<conio.h>
void main()
{
clrscr();
std::cout<<"Hello World";
getch();
}
OUTPUT: -
Hello World
For more updates follow my blog and appreciate my work.
How to write Hello World program in C++
#include <iostream.h>
#include<conio.h>
void main()
{
clrscr();
std::cout<<"Hello World";
getch();
}
OUTPUT: -
Hello World
For more updates follow my blog and appreciate my work.


No comments:
Post a Comment