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 |
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Explain what standard functions are available to manipulate strings?
What is null character in c?
how to display 2-D array elements in spiral
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
how to create c progarm without void main()?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What is the purpose of type declarations?
How many keywords are there in c?
difference between ordinary variable and pointer in C?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }