Advertisement
CODE_TOLD_FAST

C11/MACRO/VAR.C11

May 25th, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. #include <stdio.h>  
  2. int main( void ){
  3.     printf("\n\n    ");
  4.    
  5.         int two_two =       2 + 2       ;
  6.         int TWO_TWO = ((((( 2 + 2 ))))) ;
  7.  
  8.     if( (two_two/2) == (TWO_TWO/2) ){
  9.  
  10.         printf("[SAME]");
  11.    
  12.     }else{
  13.    
  14.         printf("[DIFF]");
  15.    
  16.     };;
  17.    
  18.     printf("\n\n\n...");    
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement