My First C++ Program: Hello World
Welcome to my first blog post! In this post, I'll be sharing the very first C++ program every beginner writes. the classic "Hello World" program. This program is simple but marks the start of an exciting journey into the world of coding.
(Code) :
// My First C++ Program (Hello World)
#include <iostream>
using namespace std;
int main() {
cout<<"Hello World"<<endl;
return 0;
}
Out Put:
Thanks......

Comments
Post a Comment