Computer Science, asked by sriram0285, 5 months ago

Write a program to print your name for 10 times(c++)

Answers

Answered by Anonymous
1

Answer:

122211

11011

110001

001100

Answered by kaurmanjot7753
1

Explanation:

#include<iostream>

#include<conio.h>

using namespace std;

main()

{

for(int c=1;c<=10;c++)

{

cout<<“\n\tSobia\n”;

}

getch();

return 0;

}

Similar questions