write a reverse string to print a stars.(with out using logic)
*****
****
***
**
*
Answer Posted / srikanth tupakula
#include<stdio.h>
int main()
{
int
printf("
*****");
printf("
****");
printf("
***");
printf("
**");
printf("
*");
return 0;
}
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are header files in c programming?
What does p mean in physics?
Explain how do you print an address?
Write a program to check armstrong number in c?
Explain how can you avoid including a header more than once?
Dont ansi function prototypes render lint obsolete?
Why is this loop always executing once?
What is getche() function?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What is the usage of the pointer in c?
Explain about C function prototype?
Explain how does flowchart help in writing a program?
State the difference between x3 and x[3].
Is that possible to store 32768 in an int data type variable?
Is it better to use a macro or a function?