write a C++ programming using for loop:
*
* *
* * *
* * * *
Answer Posted / amit
void main()
{
int i,j;
for(i=1;i<=4;i++)
{
for(j=1;j<=1;j++)
cout<<"*"
cout<<endl;
}
getch();
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.
What is a wchar_t in c++?
what is c++
Can we sort map in c++?
Where and why do I have to put the "template" and "typename" keywords?
What is a catch statement?
What is scope operator in c++?
What's the best free c++ profiler for windows?
What is the outcome of cout< a) 16 b) 17 c) 16.5
Is c++ a dying language?
What is the basic structure of c++ program?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
What do you mean by vtable and vptr in c++?
How does class accomplish data hiding in c++?