Guest User

Untitled

a guest
Aug 15th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <stdlib.h>
  2.  
  3. #define FOR_START for(;;){
  4. #define FOR_END }
  5.  
  6. int main(int argc, char **argv)
  7. {
  8. FOR_START
  9.  
  10. // Тело цикла.
  11.  
  12. FOR_END
  13. }
  14.  
  15. #include <stdlib.h>
  16.  
  17. int main(int argc, char **argv)
  18. {
  19. #include "FOR_START.h"
  20.  
  21. // Тело цикла.
  22.  
  23. #include "FOR_END.h"
  24. }
Add Comment
Please, Sign In to add comment