Advertisement
dllbridge

Untitled

Mar 22nd, 2022
867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3.  
  4.  
  5. #define SUM(x, y) (x + y)
  6.  
  7. #define max( a, b ) (  a > b ? a : b )
  8.  
  9. #define BUFFER_SIZE ( 1024 )
  10. #define RRR            777
  11.  
  12. /////////////////////////////////////////////////////
  13. int main()                                         //                
  14. {
  15.    
  16.  
  17.   int sum = SUM(200, 7);
  18.  
  19.   printf("sum = %d \n", sum);
  20.  
  21.   printf("%d \n", max(BUFFER_SIZE, RRR) );
  22. }
  23.  
  24.  
  25.  
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement