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 / maria

void main()
{
int i , j , k ;
for(i = 0 ; i < 3 ; i++)
{
for (k = 2 ; k >= i ; k--)
{
printf (" ") ;
}
for(j = 0 ; j<= i ; j++)
{
printf ("* " , i , j) ;
}
printf ("\n") ;
}
}

Is This Answer Correct ?    33 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of pointer?

1098


Will a catch statement catch a derived exception if it is looking for the base class?

1011


How do you invoke a base member function from a derived class in which you’ve overridden that function?

1116


What is the extension of c++?

983


Keyword mean in declaration?

1059


Why use of template is better than a base class?

1187


Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()

1537


What is the latest c++ version?

1106


What methods can be overridden in java?

1268


Can I have a reference as a data member of a class? If yes, then how do I initialise it?

1229


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create

2632


Are c and c++ different?

994


What is void pointer in c++ with example?

1097


Is map ordered c++?

1097


Why isn't sizeof for a struct equal to the sum of sizeof of each member?

998