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 |
What is the best way to store flag values in a program?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
What is bash c?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
What are the 4 types of unions?
What are the advantages and disadvantages of pointers?
What is a c token and types of c tokens?
why return type of main is not necessary in linux
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
who developed c and why he developed c?
Describe the header file and its usage in c programming?