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
Is malloc memset faster than calloc?
largest Of three Number using without if condition?
What is header file in c?
Is c high or low level?
how to introdu5ce my self in serco
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is the difference between text and binary i/o?
What are the different file extensions involved when programming in C?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Explain what are run-time errors?
How many parameters should a function have?
Hai what is the different types of versions and their differences
What is conio h in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What does %p mean?