|
|

This is only a preview of the paper Click here to register and get the full text. Existing members click here to login
|
|
|
... h> at the top of a C source file for? ... ) Well learn more about the #include directive when we cover the C Preprocessor in a few weeks. ... What is the function of the semicolon in a C statement? ... What are the definitions of the ``Boolean values true and false in C? ... Name three uses for the semicolon in C. ... (If you said ``greater than 32 and less than 212, you werent quite right, and this kind of distinction--paying attention to the difference between ``greater than and ``greater than or equal--is often extremely important in programming. ...
int i;
for(i = 0; i < 3; i = i + 1)
printf("a ");
printf("b ");
printf("c ");
It would print
a
a
a
b
c
The indentation of the statement printf("b "); is (deliberately, for the sake of the question) misleading. ... The two statements printf("b "); and printf("c "); are normal statements following the loop.
The code would be much clearer if the printf("b "); line were indented to line up with the printf("c "); line.
Approximate Word count = 1015 Approximate Pages = 4.1 (250 words per page double spaced)
|
|
|
|
|
|