|
|
|
A summary of the control structures available
no logical variablesUnlike Fortran, C goes not have logical variables. Instead, zero is false and any non-zero value is true. A logical statement will set a true result to unity. In the expression i = ( a<= 0.) i will be set to 0 if a is positive, and to 1 if less than or equal to zero. The variables TRUE and FALSE are defined in the header for loop/* loop from 1 to 10 with declaration, notice declared 11 since -10 is 11 */ /* more usual way, from 0 to less than 10 */ loops usually begin at 0 and test for being less that upper limit - then upper limit is same as dimension of variable while statementThis loop will continue cycling until the condition is not satisfied: while( a<= 0. ) do statementThis statement will cycle at least once, since the test occurs at the end do break and continueThe continue command causes the code between it and the end of the loop to be skipped, and the loop started on its next iteration. It is the same as the cycle command in Fortran 90. for( i=0; i<=6; i++ ) The break command causes the current loop to be exited. It will go up to the next higher loop if one is present. It is the same as Fortran 90's exit command. The following combines a while loop that cannot exit (since it tests on true) with a break command to provide the only way out: while (TRUE ) if else statement/* the following is a simple if statement*/ /* this is an it - else pair */ gotoIt is very rare for a well written code to need to use this statement, but it does need to be used once every few years. It is needed mostly when one needs to jump our of several loops. First, the token is "goto" so it cannot be written as "go to" as in Fortran. The syntax is goto label; where label is anything that could have been a variable, but ends with a colon as in label: conditional operator ?A conventional if - else clause looks like the following, which sets x to the smaller of y or z: if( y < y ) This can be collapsed into the following C x = (y < z ) ? y : z ; The full syntax is The conditional operator results in code that will astonish a seasoned FORTRAN programmer. The comma operatorThis allows you to put several statements where one would be expected. It would be written as a = 0. , b = 9. , c = 1. ; |