Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #define SUMNUM(x,y,z) ( (x) + (y) + (z) )
- int main() {
- int a = 3;
- int b = 4;
- int c = 5;
- int sum = SUMNUM(3, 4, 5);
- printf("Sum: %d", sum);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement