Answer Posted / arun asokan
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
int temp=1;
for(i=1;i<4;i++)
{
printf("\n")
for(j=1;j<=i;j++)
{
printf("%d",temp);
temp++;
}
}
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What does %p mean?
What does struct node * mean?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is wild pointer in c?
How do you declare a variable that will hold string values?
Is there any demerits of using pointer?
what is the structure pointer?
what are the advantages of a macro over a function?
Under what circumstances does a name clash occur?
Do array subscripts always start with zero?
When should the volatile modifier be used?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What is the best organizational structure?
What is difference between structure and union in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10