hola mundo c
#include <iostream>
int main(){
std::cout <<"Hello World" << std::endl;
return 0;
}
Silly Sable
#include <iostream>
int main(){
std::cout <<"Hello World" << std::endl;
return 0;
}
#include <iostream>
using namespace std;
// Main() function: where the execution of program begins
int main()
{
// prints hello world
cout << "Hello World";
return 0;
}
#include<iostream>
using namespace std;
int main(){
cout << "Hello World" << endl;
return 0;
}
#include<iostream>
using std::cout;
int main(){
cout << "Hello World";
return 0;
}
#include<iostream>
using namespace std;
int main()
{
cout<<"Hello World";
return 0;
}
std::cout << "Hello World" << std::endl;