我是编程新手,也不熟悉这种mex格式。我在c中写了这段代码。但我有scanf的错误。谁能帮助我如何在mex函数中给出像scanf这样的键盘的整数值?提前谢谢。
#include "mex.h"
void mexFunction()
{
int a,b,c;
mexPrintf("Enters two number to add\n");
scanf("%d %d",&a,&b);
c = a+b;
mexPrintf("Sum of the numbers = %d\n",c);
return 0;
}