#include "stdafx.h" #define MOD(A, B) A%B int main(int argc, char* argv[]) { int a, b; a=5; b=2; printf("%d\n", MOD(a, b));//a%b return 0; }