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
Explain why c is faster than c++?
What is the difference between union and structure in c?
What do the functions atoi(), itoa() and gcvt() do?
What is a nested formula?
What is calloc in c?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
how could explain about job profile
What is storage class?
Why isn't any of this standardized in c? Any real program has to do some of these things.
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What are reserved words with a programming language?
What is atoi and atof in c?
Why we use int main and void main?
What is the full form of getch?
What do mean by network ?