Advertisement
Guest User

Untitled

a guest
Oct 21st, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. if ( TRUE ) {
  2.   if ( TRUE ) {
  3.    // Execute these statements if TRUE
  4.   }
  5.   else {
  6.     // Execute these statements if FALSE
  7.   }
  8. }
  9. else {
  10.   // Execute these statements if FALSE
  11. }
  12.  
  13. if ( TRUE ) :
  14.   if ( TRUE ) :
  15.    // Execute these statements if TRUE
  16.   else :
  17.     // Execute these statements if FALSE
  18. else :
  19.   // Execute these statements if FALSE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement