Answer Posted / guest
loops are used at times when we need to repeatedly check a
condion or during in situations when we need to execute
statements again and again as we need.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the use of #define preprocessor in c?
What are the advantages and disadvantages of pointers?
What is meant by operator precedence?
What are pointers in C? Give an example where to illustrate their significance.
What is an endless loop?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What are derived data types in c?
How do we print only part of a string in c?
What is the difference between void main and main in c?
What are the 4 data types?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Describe wild pointers in c?
Does c have enums?
How can you find out how much memory is available?
What is the explanation for the dangling pointer in c?