how can i get the output
54321
4321
321
21
1
in c programming........???? pls help......
Answer Posted / code0090
for more go to
http://answerwale.co.cc/?p=22#comment-18
#include<stdio.h>
#include<conio.h>
int main()
{
int a=5;
int b=9;
while(a!=0){
for(int i=a;i>0;i--)
{
printf("%d",i);
}
printf("\n");
a--;
}
getch();
return 0;
}
| Is This Answer Correct ? | 7 Yes | 9 No |
Post New Answer View All Answers
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Tell me with an example the self-referential structure?
What do you understand by normalization of pointers?
What is the purpose of void pointer?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is the purpose of & in scanf?
How can I call fortran?
what do you mean by inline function in C?
Can I initialize unions?
Difference between constant pointer and pointer to a constant.
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
what is the difference between class and unio?
Explain what is the benefit of using const for declaring constants?
What is c basic?
Can a variable be both static and volatile in c?