Answer Posted / prasanna
int i,j;
for(i=o;i<4;i++)
{
for(j=0;j<=i;j++)
{
printf("*");
}
}
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
Explain what is a stream?
What is an array? What the different types of arrays in c?
What is structure packing in c?
Are there namespaces in c?
Is it possible to pass an entire structure to functions?
What is the meaning of typedef struct in c?
What are all different types of pointers in c?
Wt are the Buses in C Language
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
How do I read the arrow keys? What about function keys?
What are extern variables in c?
a program that can input number of records and can view it again the record
When should a far pointer be used?
What are the loops in c?
Can you please compare array with pointer?