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 |
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
what different between c and c++
What is the meaning of ?
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
what is purpose of fflush(stdin) function
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
what is ram?
What is Memory leakage ?
What are the Advantages of using macro
How to write a code for reverse of string without using string functions?
What are structure types in C?
Explain how do you generate random numbers in c?