Guest User

Untitled

a guest
Jun 29th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. if (accountExpired)
  2. {
  3. // do something
  4. }
  5. {
  6. // do something else
  7. }
  8.  
  9. for (i=0; i<end; ++i);
  10. {
  11. //code
  12. }
  13.  
  14. for ( int i=0;i < numrecords; i++ )
  15. {
  16. // a dozen lines of database code that used i
  17. i=0;
  18. }
  19.  
  20. #include <stdio.h>;
  21.  
  22. int main() {
  23. printf("hello world");
  24. return 0;
  25. }
Add Comment
Please, Sign In to add comment