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
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
When should we use pointers in a c program?
What is linear search?
How do you search data in a data file using random access method?
What is the argument of a function in c?
How can you draw circles in C?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
why programs in c are running with out #include
What is the most efficient way to store flag values?
What is bubble sort technique in c?
What is a list in c?
Why is c called c?
Which is better oop or procedural?
What is || operator and how does it function in a program?
What does the message "automatic aggregate intialization is an ansi feature" mean?