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
Is flag a keyword in c?
What is ambagious result in C? explain with an example.
what will be maximum number of comparisons when number of elements are given?
What will be your course of action for a push operation?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Is c dynamically typed?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
How do I create a directory? How do I remove a directory (and its contents)?
What is a pointer on a pointer in c programming language?
What are pointers? What are stacks and queues?
Why is c called c not d or e?
What is hungarian notation? Is it worthwhile?
Why main function is special give two reasons?
What is cohesion in c?
Can a pointer point to null?