write the code that display the format just like
1
2 1
3 2 1
4 3 2 1
5 4 3 2 1
6 5 4 3 2 1
Answer Posted / kamal
int main()
{
cout<<"1\n2 1\n3 2 1\n4 3 2 1\n5 4 3 2 1\n6 5 4 3 2 1";
return 0;
}
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What character terminates all character array strings a) b) . c) END
What is the basic of c++?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
Write a note about the virtual member function?
What are the benefits of pointers?
Explain what are accessor methods?
What is constructor and destructor in c++?
Is map ordered c++?
Explain the auto storage classes in c++.
What is #include cstdlib in c++?
What is split a string in c++?
Is c# written in c++?
What is virtual table?
what is C++ objects?
What is size of string in c++?