3,792 views
3 votes
3 votes
#include <stdio.h>
#define MULTIPLY(a, b) a*b
int main()
{
    printf("%d", MULTIPLY(2+3, 3+5));
    return 0;
}

2 Answers

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
1 answer
2
0 votes
0 votes
1 answer
3