Computer Science, asked by chauhanjai29201, 13 hours ago

Write a program to print 'Nothing is impossible, impossible is nothing ' for 10 times in c++.​

Answers

Answered by krutiraj12
0

Answer:

I don't know mark me as brinalest please bye

Answered by ayesha000khan111
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