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
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is external variable in c?
How to write a code for reverse of string without using string functions?
largest Of three Number using without if condition?
What is the need of structure in c?
Explain what is the difference between functions abs() and fabs()?
What is the use of linkage in c language?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What does return 1 means in c?
Explain can you assign a different address to an array tag?
What is difference between structure and union in c?
What is the use of #include in c?
What does 2n 4c mean?
write a c program in such a way that if we enter the today date the output should be next day's date.