Debug Error program :f:\c program\Debug\习题85.exe runtime error (Press Retry
#define NL putchar('\n')#define PR(format,value) printf("value = %format\t",(value))
#define PRINT1(f,x1) PR(f,x1);NL
#define PRINT2(f,x1,x2) PR(f,x1);PRINT1(f,x2)
#include<stdio.h>
#include<conio.h>
int main(void)
{
int x,x1,x2;
printf("please input x x1 x2 :");
scanf("%d %f %f",&x,&x1,&x2);
PR(d,x);
PRINT1(d,x1);
PRINT2(d,x1,x2);
getch();
return 0;
}
Debug Error
program :f:\c program\Debug\习题85.exe
runtime error
(Press Retry to debug the application)是什么意思,求解惑???度娘上看不懂。。。