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 stoi in c++?

1234


What are exceptions c++?

1114


How a macro differs from a template?

1223


Please explain class & object in c++?

1154


Describe friend function & its advantages.

1176


Can you write a function similar to printf()?

1191


Can non-public members of another instance of the class be retrieved by the method of the same class?

1125


What is late binding c++?

1030


How compile and run c++ program in turbo c++?

1241


What do manipulators do?

1068


Does c++ cost money?

1053


Is it possible to provide default values while overloading a binary operator?

1324


What is name hiding in c++?

1224


What is the difference between a pointer and a link in c ++?

1109


Explain object slicing in c++?

1125