跪求大神解答 小白在此感谢 解答system函数无法使用的问题

图片说明

请问为什么我按照教学视频的代码无法打开计算器呢?
窗口还提示命令语法错误。
是不是我的计算机上的头文件stdlib.h 的配置路径不正确啊
请大神门不吝赐教,谢谢了

#include<stdio.h>
#include<stdlib.h>

int main(){
    system("calc");
    return 0; 
}

按照规范来,不该打空格的地方别打空格 = =

getchar没用,getchar也没有填参数,要getchar何用?

#include <iostream>//我用的是C++
using namespace std;
int main()
{
        system("calc");
}