CPP
hello world
using namespace std;
int main()
{
cout<<"Hello World\n";
return 0;
}
Try it Yourself ➠
"Hello World" in C++
10 May
2
Write a program(WAP) in CPP to print "Hello World".
#include<iostream>using namespace std;
int main()
{
cout<<"Hello World\n";
return 0;
}
Try it Yourself ➠
Must Read :-
Previous article
Next article
printf("Hello Sarthak Mund S3");
ReplyDeletecout<<"Hello sarthak mund s3";
ReplyDelete