Answer Posted / 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 |
Post New Answer View All Answers
Where in memory are my variables stored?
Can a local variable be volatile in c?
Is c easier than java?
What is pass by value in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
i got 75% in all semester am i eligible for your company
Is c programming hard?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What are variables and it what way is it different from constants?
What do you mean by dynamic memory allocation in c? What functions are used?
Do string constants represent numerical values?
Do variables need to be initialized?
What is a file descriptor in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What does void main () mean?