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
How many levels of pointers have?
What is an lvalue in c?
What are qualifiers and modifiers c?
How do you declare a variable that will hold string values?
What are disadvantages of C language.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is variable initialization and why is it important?
When would you use a pointer to a function?
What is wrong in this statement? scanf(ā%dā,whatnumber);
How do you print only part of a string?
Explain what does the format %10.2 mean when included in a printf statement?
Does c have circular shift operators?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What is #define?
How do shell structures work?