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 what is wrong with this statement? Myname = ?robin?;
What is the symbol indicated the c-preprocessor?
What are actual arguments?
how can I convert a string to a number?
What is the function of this pointer?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What is ponter?
What is the use of pragma in embedded c?
what are # pragma staments?
What does 4d mean in c?
Write a program on swapping (100, 50)
What does double pointer mean in c?
What does do in c?
Are the expressions * ptr ++ and ++ * ptr same?
Why is c platform dependent?