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
Is void a keyword in c?
What are the 4 types of organizational structures?
what will be the output for the following main() { printf("hi" "hello"); }
What is time null in c?
What is scope and lifetime of a variable in c?
Why do we need a structure?
What is the difference between malloc() and calloc()?
How can I implement a delay, or time a users response, with sub-second resolution?
How do I copy files?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is meant by gets in c?
Write the Program to reverse a string using pointers.
Do character constants represent numerical values?
What are operators in c?
Explain #pragma statements.