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
What are the disadvantages of a shell structure?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What are variables and it what way is it different from constants?
Difference between Shallow copy and Deep copy?
What is the hardest programming language?
What are the 4 types of programming language?
How can I access an I o board directly?
What is extern variable in c with example?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the purpose of realloc()?
What is character constants?
Why do we use null pointer?
Explain what header files do I need in order to define the standard library functions I use?
What is difference between union and structure in c?