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

#include<stdio.h>
main()
{
int i,j;
for(i=1;i<=3;i++)
{
for(j=1;j<=3;j++)
printf("\n",i,j);
}
}

Is This Answer Correct ?    23 Yes 91 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between equal to (==) and assignment operator (=)?

1133


What is the difference between a definition and a declaration?

1111


What is polymorphism in c++? Explain with an example?

1101


What does count ++ do in c++?

1253


Does c++ have string data type?

1158


Is c++ a difficult language?

1201


If dog is a friend of boy, is boy a friend of dog?

1047


How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?

1202


How long will it take to learn programming?

1099


Does a derived class inherit or doesn't inherit?

1121


Explain function overloading and operator overloading.

1119


Differentiate between structure and class in c++.

1135


Is string an object in c++?

1210


In what situations do you have to use initialization list rather than assignment in constructors?

1104


what are the events occur in intr activated on interrupt vector table

1795