Answer Posted / malik
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
for(i=5;i>=0;i--)
{
for(j=1;j<=i;j++)
{
printf("%d", j);
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What are the types of functions in c?
Why & is used in scanf in c?
Where can I get an ansi-compatible lint?
What is modeling?
Explain how can you avoid including a header more than once?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Why is c platform dependent?
What is operator precedence?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Is null always defined as 0(zero)?
What is a protocol in c?
Explain output of printf("Hello World"-'A'+'B'); ?
What is type qualifiers?
What is the advantage of using #define to declare a constant?