Need help with a C++ assignment? Get affordable C++ homework help.
"Hello world!" code snippet
Summary
C/C++ program printing "Hello world!" string to the console.
Source code
C++: hello_world.cpp
#include <iostream>
using namespace std;
int main() {
cout << "Hello world!" << endl;
return 0;
}
C: hello_world.c
#include "stdio.h"
int main() {
printf("Hello World!\n");
return 0;
}
Sample run
C/C++
Hello World!