Write a program to print 'Nothing is impossible, impossible is nothing ' for 10 times in c++.
Answers
Answered by
0
Answer:
I don't know mark me as brinalest please bye
Answered by
3
Explanation:
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a=1;
while(a<=10)
{
a++;
cout<<"nothing is impossible impossible is nothing"<<endl;
}
getch();
}
Similar questions