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

progrem to generate the following series
1
12
123
1234
12345

Answer Posted / srsabariselvan

int main()
{
int i,j;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d\t",j);
}
printf("\n");
}
return 0;
}

Is This Answer Correct ?    115 Yes 27 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can a file other than a .h file be included with #include?

1218


what are the facialities provided by you after the selection of the student.

2331


In C language what is a 'dangling pointer'?

1240


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

1084


What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?

1329


What is identifier in c?

1063


Write a Program to find whether the given number or string is palindrome.

1336


How is a null pointer different from a dangling pointer?

1084


hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

2062


What are variables c?

1093


Explain the process of converting a Tree into a Binary Tree.

2724


What is getch() function?

1109


Disadvantages of C language.

1156


How do you view the path?

1182


How do you write a program which produces its own source code as output?

1173