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 reverse string to print a stars.(with out using logic)
*****
****
***
**
*

Answer Posted / sandeep

#include<stdio.h>
#include<conio.h>
int main()
{

puts("
*****");
puts("
****");
puts("
***");
puts("
**");
puts("
*");
return 0;
}

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a macro?

1101


Why is c called a structured programming language?

1272


Can we change the value of constant variable in c?

1053


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

1982


What are keywords in c with examples?

1082


Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

5947


Is main is user defined function?

1141


How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same

1095


What is union in c?

1115


Explain bit masking in c?

1134


What is local and global variable in c?

1196


What is a shell structure examples?

1097


What does the error 'Null Pointer Assignment' mean and what causes this error?

1215


What are static variables in c?

1078


What is methods in c?

1083