当我在线提交时,他们总是说编译错误

时间:2014-03-05 07:06:25

标签: c++ xcode gcc

这是我的代码: 它在我的Mac上运行良好。 但我不确定是否是Gcc版本的问题。 他们说sstream和字符串标题是错误的。

1779655.134485 / Main.c:8:19:致命错误:sstream:没有这样的文件或目录 编译终止。

这是提示

#include <iostream>
#include <sstream>
#include <string>
using namespace std;

1 个答案:

答案 0 :(得分:2)

您正试图在C program中包含C ++头文件。 Gcc是C编译器。

您需要将Main.c重命名为Main.cpp并使用g ++编译器...