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 the basic structure of c?
Is c language still used?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What is graph in c?
What are the types of pointers?
How many levels of pointers have?
What is n in c?
What is the use of extern in c?
Ow can I insert or delete a line (or record) in the middle of a file?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is wild pointer in c?
What is the difference between a function and a method in c?
What is bubble sort technique in c?
#include
What is the difference between mpi and openmp?