Writing a simple C++ program
Writing a simple C++ program
This program is a simple program which displays the output
Program :-
#include<iostream.h>
void main ( )
{
cout<<"C++ is a object oriented language";
}
Output :-
C++ is a object oriented language
This program is a simple program which displays the output
Program :-
#include<iostream.h>
void main ( )
{
cout<<"C++ is a object oriented language";
}
Output :-
C++ is a object oriented language
Comments
Post a Comment