Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. #define SQR(x) x * x
  4.  
  5. int main(void) {
  6.     int y,z;
  7.     z = 1;
  8.     y = SQR(z+1);
  9.     printf("%d\n", y);
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement