Give the Output :
*
* *
* * *
* * * *

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


Please Help Members By Posting Answers For Below Questions

what do you mean by enumeration constant?

586


What is an auto variable in c?

736


Which is the memory area not included in C program? give the reason

1489


To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9

2173


How can I use a preprocessorif expression to ?

589






What is void main ()?

599


how to find anagram without using string functions using only loops in c programming

2704


a program that can input number of records and can view it again the record

1471


What is the use of parallelize in spark?

566


Is c easy to learn?

550


how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12

636


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

717


Explain what is the concatenation operator?

611


What is function and its example?

612


What is #include cctype?

566