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 for following output using for loop?
1 2 3 4 5
2 3 4 5
3 4 5
4 5
5

Answer Posted / ep

#include <stdio.h>

int main()
{

for ( int i = 1; i <= 5 ; i++ ) {
for ( int j = i; j <= 5 ; j++ ) {
if ( i != j ) printf (" ");
printf( "%d", j );
};
printf("\n");
}

return 0;
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why use int main instead of void main?

1108


What is a structure in c language. how to initialise a structure in c?

1053


What are valid operations on pointers?

1179


write a program to copy the string using switch case?

2881


What is the correct declaration of main?

1198


What is the use of a conditional inclusion statement in C?

1044


On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area

1102


write a program in c language to print your bio-data on the screen by using functions.

6770


Can we replace the struct function in tree syntax with a union?

1290


What does c mean?

1025


Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?

1058


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

1204


Why does the call char scanf work?

1184


How can a program be made to print the name of a source file where an error occurs?

1207


Can we declare variable anywhere in c?

956