- 2
Can someone show me the code in c++ to show "HELLO WORLD"
help please
5 Antworten
+ 3
it's in the course
+ 2
cout<<"hello world";
0
oh sorry im a newbie :) thanks btw
0
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World";
return 0;
}
0
#include<conio.h>
void main()
{
cout<<"hello world";
}