我在Xcode上调试这个c ++程序时,在第3行'System/' file not found
和第5行Expected ';' after top level declarator
面对此问题。这是我第一次使用Xcode
#include <stdio.h>
#include <stdarg.h>
#include <System>
using namespace System;
int main(array<System::String ^> ^args){
Console::Clearc();
Console::SetCursorPosition(5,5);
putchar('*');
Console::ReadLine();
return 0;
}