what is the difference between entry control and exit
control statement?
Answer Posted / ksk
Entry Comtrolled will check the Condition at First and
doesn't execute if it is False.
Exit Comtrolled will check the Condition at Last and at
least once the statement will execute though it is False .
| Is This Answer Correct ? | 338 Yes | 31 No |
Post New Answer View All Answers
What is self-referential structure in c programming?
Can static variables be declared in a header file?
Is int a keyword in c?
What is the 'named constructor idiom'?
What is calloc()?
Explain union. What are its advantages?
What is typedef struct in c?
What is the value of uninitialized variable in c?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Is main a keyword in c?
What is #include stdio h and #include conio h?
Can you return null in c?
What is operator promotion?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Explain what is wrong with this program statement? Void = 10;