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 is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
Why can arithmetic operations not be performed on void pointers?
Explain the difference between the local variable and global variable in c?
How pointer is different from array?
Not all reserved words are written in lowercase. TRUE or FALSE?
Explain #pragma statements.
What is a macro, and explain how do you use it?
Explain how do you view the path?
Explain how can I read and write comma-delimited text?
What is the difference between local variable and global variable in c?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Explain why can’t constant values be used to define an array’s initial size?
What is header file definition?
What is scope of variable in c?
Can a variable be both constant and volatile?