Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

program to print this triangle
*
* *
* * *

Answer Posted / vivek

!Program is executable in C++

#include<iostream.h>
#include<conio.h>
void main()
{
int i,j;
for(i=0;i<3;++i)
{
for(j=0;j<i;++j)
cout<<"* ";
cout<<"\n";
}
getch();
}

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Do class method definitions?

984


What is the use of pointer in c++ with example?

981


What are files in c++?

977


Write a short code using c++ to print out all odd number from 1 to 100 using a for loop

972


What are friend classes?

1016


How are the features of c++ different from c?

1016


What is the use of endl?

919


What is #include cstdlib in c++?

1140


What is the iunknown interface?

1074


What is code reusability in c++?

1180


Explain the purpose of the keyword volatile.

1103


Can non graphic characters be used and processed in C++?

1133


What are the storage qualifiers?

1105


Does improper inheritance have a potential to wreck a project?

1086


Is c++ a low level language?

916