NarmeenHumayon / WebDev

Repository is for projects for my Web Development Course.
0 stars 0 forks source link

print.cpp #1

Open NarmeenHumayon opened 2 months ago

NarmeenHumayon commented 2 months ago

include

using namespace std;

int main(){ cout<<"Hello World"; return 0; }

PrasanBora commented 2 months ago

include // Include the iostream header file for input and output

using namespace std;

int main() { cout << "Hello World"; // Output "Hello World" to the console return 0; // Return 0 to indicate successful completion }