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...

Write a Program to print this triangle:
*
**
*
****
*
******
*
********
*
**********
use two nested loops.

Answer Posted / kk

only 1st quistion is correct and then all ar quistions are
wrong.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the general description for loop statement and available loop types in c?

1076


c program for searching a student details among 10 student details

2044


How can I remove the trailing spaces from a string?

1028


What is the difference between array and pointer in c?

1092


What is the difference between malloc() and calloc()?

1699


Explain a pre-processor and its advantages.

1076


What is getch c?

1245


What is echo in c programming?

967


Explain what does it mean when a pointer is used in an if statement?

1006


What do you understand by normalization of pointers?

1009


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

1096


What is the difference between scanf and fscanf?

1203


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6193


What is a void pointer in c?

1046


What is the use of void pointer and null pointer in c language?

1073