write a reverse string to print a stars.(with out using logic)
*****
****
***
**
*
Answers were Sorted based on User's Feedback
Answer / sandeep
#include<stdio.h>
#include<conio.h>
int main()
{
puts("
*****");
puts("
****");
puts("
***");
puts("
**");
puts("
*");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / srikanth tupakula
#include<stdio.h>
int main()
{
int
printf("
*****");
printf("
****");
printf("
***");
printf("
**");
printf("
*");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 3 No |
Write code for finding depth of tree
What is a global variable in c?
What are bitwise shift operators in c programming?
What is the difference between constant pointer and constant variable?
What is external variable in c?
Differentiate between null and void pointers.
The statement, int(*x[]) () what does in indicate?
main() { int a; a=++100; printf("%d",a); getch(); }
What are the rules for the identifier?
How do you sort filenames in a directory?
How do you search data in a data file using random access method?
Toggle nth bit in a given integer - num