C++ 虐我千百遍
@cppptsd
109
subscribers
31
photos
7
links
Download Telegram
Join
C++ 虐我千百遍
109 subscribers
C++ 虐我千百遍
#include <iostream>
以后不能直接使用
std::istream
和
std::ostream
,应当
#include <istream>
和
#include <ostream>
(C++11 之前
C++ 虐我千百遍
今日不会 GCC Precompiled Headers:
在文件夹 headers 仅存放 stdio.h.gch,然后 -I headers 编译如下程序
#include
<stdio.h>
#include
<cstdio>
就会报 fatal error: headers/stdio.h: No such file or directory
解决方法是复制一份 stdio.h 到 headers 文件夹
by
@wys_1