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

how can i get the output
54321
4321
321
21
1

in c programming........???? pls help......

Answer Posted / mydeen

for(i=5;i<0;i++)
{
for(j=i;j<0;j++)
{
printf("%d",&i);
}
}

Is This Answer Correct ?    4 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

explain what are pointers?

966


Is c is a low level language?

1065


What is the code in while loop that returns the output of given code?

1890


What is a sequential access file?

1090


Explain how can type-insensitive macros be created?

953


Explain what does the function toupper() do?

1004


Suggesting that there can be 62 seconds in a minute?

994


Why dont c comments nest?

999


In a switch statement, what will happen if a break statement is omitted?

1005


Tell me the use of bit field in c language?

1015


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

1083


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

1239


What are the difference between a free-standing and a hosted environment?

1218


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

1224


How can I write functions that take a variable number of arguments?

1075