what is the difference between entry control and exit
control statement?
Answers were Sorted based on User's Feedback
Answer / kishan agrawal
Entry Control loop can be said as the loop which checks the
condition before execution of body if condition asked are
true than it will come to the next step(can be said as body
part of that particular loop/program) they are WHILE,FOR
EXIT Control loop can be said as the loop which checks the
condition after execution of body at once(can be said as
body part of that particular loop/program) if condition
asked are true than it will come to the second time
execution they are do-while
| Is This Answer Correct ? | 11 Yes | 15 No |
Is void a keyword in c?
How do you do dynamic memory allocation in C applications?
how to add numbers without using arithmetic operators.
What are dangling pointers?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
What is the difference between memcpy and memmove?
What are the advantages of the functions?
What is the use of linkage in c language?
Write a program to print numbers from 1 to 100 without using loop in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
When should the volatile modifier be used?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"