hello world program in c++
In today’s article we are going to see hello world program in c++
hello world program in c++
#include<iostream>
using namespace std;
int main()
{
cout<<“hello world!”;
return 0;
}
output
hello world!
In today’s article we are going to see hello world program in c++
#include<iostream>
using namespace std;
int main()
{
cout<<“hello world!”;
return 0;
}
hello world!
Post a Comment