新手想寻求该程序的帮助
#include<iostream.h>void main(int argc,char *argv[])
{
double a,b,c;
a=atoi(argv[1]);
b=atoi(argv[2]);
c=a+b;
cout<<"First Number:"<<a<<endl;
cout<<"Second Number:"<<b<<endl;
cout<<a<<"+"<<b<<"="<<c<<endl;
}
编译之后显示 error C2065: 'atoi' : undeclared identifier
好像是必须在dos下或者在编译器中设置命令行参数才能运行代码还是什么问题?
怎么去调试使程序正常运行?