Output for following program using for loop only
*
* *
* * *
* * * *
* * * * *
Answer Posted / sampath
for(i=0;i<=5;i++){
for(j=i;j<=i;j++)
printf("*");
printf("\n");
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How can I make sure that my program is the only one accessing a file?
shorting algorithmS
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What does struct node * mean?
What is printf () in c?
What are the types of bitwise operator?
What is #include cctype?
Explain why can’t constant values be used to define an array’s initial size?
Write a program of advanced Fibonacci series.
Is it cc or c in a letter?
Explain what is meant by 'bit masking'?
Is c compiled or interpreted?
What is header file in c?
Is it possible to execute code even after the program exits the main() function?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)