#include<stdio.h>
main()
{int i=1;j=1;
for(;;)
{if(i>5)
break;
else
j+=1;
printf("\n%d",j)
i+=j;
}
}
Answer Posted / vedansh
2
3
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
How would you obtain the current time and difference between two times?
What is break in c?
Can you add pointers together? Why would you?
What is far pointer in c?
Describe the difference between = and == symbols in c programming?
What are examples of structures?
What is || operator and how does it function in a program?
How can a program be made to print the line number where an error occurs?
What does c mean?
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
Why do we use int main?
What is string in c language?
What is the ANSI C Standard?
Why can’t we compare structures?
What is a good way to implement complex numbers in c?