Fisrt program of C++ language
The code is usable for Visual studio code editor
#include<iostream.h>
#include<conio.h>
using namespace std
void main()
{
cout<<"Hello india \n";
getch();
}
#second method
The code is usable for Turbo c,c++
#include<iostream.h>
#include<conio.h>
void main()
{
cout<<"hello india\n";
getch();
}
Comments
Post a Comment