为什么<stack>包含在mac命令行工具上不起作用?

时间:2017-04-08 09:31:45

标签: c++ xcode macos stack

下面的代码在Windows上运行正常,但是当我在Mac的Xcode上编译它时,我没有得到任何输出。

#include <iostream>
#include <stack>

using namespace std;

int main(int argc, const char * argv[]) {
   stack<int> S;
   S.push(5);
   cout << S.top();
   return 0;
}

0 个答案:

没有答案