Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
#include <stdio.h> #define DebugPrint(x) printf("value of \"%s\" is: %d\n",#x, x); int main() { int n1; int n2; n1 = 13; n2 = 87; DebugPrint(n1); DebugPrint(n2); return 0; } /* run: value of "n1" is: 13 value of "n2" is: 87 */