Write a program that his output * *** *****
Answer / srujitha
int main()
{
int n = 5;
for( int i = 0; i <= n; i = i + 2)
{
for( int j = 0; j<=i;j++)
{
printf("*");
}
printf(" ");
}
| Is This Answer Correct ? | 3 Yes | 0 No |
What does a function declared as pascal do differently?
implement general tree using link list
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
What is wild pointer in c?
What is the translation phases used in c language?
What are type modifiers in c?
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
Give differences between - new and malloc() , delete and free() ?
What is a c token and types of c tokens?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is an operator?
Explain the advantages and disadvantages of macros.