C++ Program to display Hello World [DEVCPP/GCC] Prateek Gupta BASIC Prateek Gupta //Program to display Hello World #include <iostream> using namespace std; int main() { cout<<"HELLO WORLD"; return 0; } Author : Prateek Gupta Share this Related Posts