How to write your first C++ program?
- All you need a compiler first.
- On the next step write a program.
i.e
#include<iostream>
using namespace std;
int main()
{
cout<<"Hi coders groudies this side";
return0;
- On the next step first, save the program and then compile the program.
- Run the program.
- Check the output.
No comments:
Post a Comment