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 is the size of empty structure in c?
What are qualifiers and modifiers c?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is the use of sizeof () in c?
What is identifier in c?
Explain how do you view the path?
Do variables need to be initialized?
Explain the use of keyword 'register' with respect to variables.
What is function prototype?
What is the purpose of void pointer?
What is switch in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Is python a c language?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }