2015-06-21 57 views
-1

你怎麼做如何在xcode中包含<stdio>? C++

#include <stdio.h> 
在Xcode

我得到所有這些錯誤。

enter image description here

+0

是否安裝了命令行工具? – albertoqa

+0

如何檢查?順便說一句,我所做的是Xcode->新建 - >項目 - > OSX應用程序 - >命令行工具 –

+0

在終端中運行'$ xcode-select -p',輸出是什麼? – albertoqa

回答

3

std::ofstream#include <fstream>
對於std::string#include <string>

<stdio.h>是功能所需的C頭,如printffopen。它包括這樣的:#include <stdio.h>。在C++中,最好是#include <cstdio>,因此所有名稱都嵌入在namespace std中(因此您應該使用std::printf等)。

-1

你是C程序員吧?

<stdio.h>是C的I/O庫。我想你正在尋找這個(C++的I/O庫):

#include <iostream>