Popular Posts

1. Write a program to show “C++ is better than C” .

1. Write a program to show “C++ is better than C” .

#include
#include
int main()
{
clrscr();
cout<<"C++ is better than C";
getch();
return 0;
}

Output:

C++ is better than C

No comments: