program to print this triangle
*
* *
* * *
Answer Posted / roma
for(i=1; i<=3; i++)
{
cout<<"*"
}
getch();
| Is This Answer Correct ? | 4 Yes | 11 No |
Post New Answer View All Answers
What does return 0 do in c++?
Describe the advantages of operator overloading?
Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?
What do you mean by global variables?
What are c++ variables?
How can you quickly find the number of elements stored in a static array?
Can I make ios apps with c++?
How can you create a virtual copy constructor?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
Explain how functions are classified in C++ ?
What is ctime c++?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
What is meant by entry controlled loop? What all C++ loops are exit controlled?
Can we use clrscr in c++?
What is auto type c++?