//Program in Dev C++
/*
Header file declaration
*/
#include<iostream> //in Dev C++ you need not give to ".h" extension
#include<conio.h>
using namespace std;
int main()
{
cout<<"My C++ Program with Code ART."; //displaying out by cout
getch();
}
Output:-
/*
Header file declaration
*/
#include<iostream> //in Dev C++ you need not give to ".h" extension
#include<conio.h>
using namespace std;
int main()
{
cout<<"My C++ Program with Code ART."; //displaying out by cout
getch();
}
Output:-
0 comments:
Post a Comment