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 is a scope resolution operator in c?
Can an array be an Ivalue?
What is void c?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is the difference between text and binary i/o?
Why flag is used in c?
What are the features of c language?
What are header files why are they important?
Explain what is meant by high-order and low-order bytes?
What is the g value paradox?
What is the difference between int main and void main?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
How many parameters should a function have?
In c language can we compile a program without main() function?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.