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 uses of a pointer?
What is dynamic memory allocation?
hi, which software companys will take,if d candidate's % is jst 55%?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What are the types of functions in c?
Can main () be called recursively?
How can you pass an array to a function by value?
What is a null string in c?
What is the purpose of void pointer?
List some of the dynamic data structures in C?
What do you mean by c what are the main characteristics of c language?
What the advantages of using Unions?
What is a far pointer in c?
Explain the Difference between the New and Malloc keyword.
how can f be used for both float and double arguments in printf? Are not they different types?