Answer Posted / karthickumar
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=6;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch()
}
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is pragma in c?
What is c value paradox explain?
List the variables are used for writing doubly linked list program.
What is the purpose of main( ) in c language?
Can we add pointers together?
Why do we use static in c?
What is strcmp in c?
What is far pointer in c?
What is return in c programming?
Explain do array subscripts always start with zero?
What do you mean by command line argument?
What is the difference between local variable and global variable in c?
Why do we write return 0 in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What is wrong with this declaration?