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
explain what are pointers?
Is c is a low level language?
What is the code in while loop that returns the output of given code?
What is a sequential access file?
Explain how can type-insensitive macros be created?
Explain what does the function toupper() do?
Suggesting that there can be 62 seconds in a minute?
Why dont c comments nest?
In a switch statement, what will happen if a break statement is omitted?
Tell me the use of bit field in 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
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What are the difference between a free-standing and a hosted environment?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How can I write functions that take a variable number of arguments?