Answer Posted / manojkumar challagundla
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
int ctr=1;
for(i=1;i<=4;i++)
{
printf("\n")
for(j=1;j<=i;j++)
{
printf("%d",ctr);
ctr++;
}
}
}
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Explain how do you determine a file’s attributes?
regarding pointers concept
find out largest elemant of diagonalmatrix
Why is c platform dependent?
What is clrscr in c?
What are the different types of control structures in programming?
Explain about block scope in c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What is structure data type in c?
What is the use of printf() and scanf() functions?
Why static variable is used in c?
What are examples of structures?
The statement, int(*x[]) () what does in indicate?
Why is c used in embedded systems?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm