12345
1234
123
12
1
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / prachi
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d", i);
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 2 Yes | 3 No |
Why dont c comments nest?
Explain how can I read and write comma-delimited text?
How can type-insensitive macros be created?
List some basic data types in c?
What is the size of structure pointer in c?
What is difference between constant pointer and constant variable?
what are advantages of U D F?
could u able to tell about suresoft technical session
How can variables be characterized?
What is a C array and illustrate the how is it different from a list.
What is openmp in c?
what is the difference between postfix and prefix unary increment operators?