how can i get the output
54321
4321
321
21
1
in c programming........???? pls help......
Answer Posted / mydeen
for(i=5;i<0;i++)
{
for(j=i;j<0;j++)
{
printf("%d",&i);
}
}
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
What happens if header file is included twice?
How can I pad a string to a known length?
praagnovation
What are the different types of linkage exist in c?
Why are algorithms important in c program?
What is c language & why it is used?
What is array of pointers to string?
How can I write a function that takes a format string and a variable number of arguments?
What are header files in c?
What are the rules for the identifier?
What are variables c?
What is sizeof int in c?
What is the advantage of an array over individual variables?
What is string length in c?
What is the concatenation operator?