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
Explain how can I manipulate strings of multibyte characters?
What is the difference between variable declaration and variable definition in c?
What language is c written?
Why is it important to memset a variable, immediately after allocating memory to it ?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What are the different categories of functions in c?
What is break statement?
What is a wrapper function in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is the use of header files?
What are the functions to open and close file in c language?
What are pointers?
What are the advantages and disadvantages of c language?
What is the stack in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?