eb132.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 29 行

C
29
字号
// Build don't link:// From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de> // Reported against EGCS snaps 98/06/28.// Special g++ Options: -O -Wall  -fgcse -frerun-loop-opt//// Compilation of this program with the flags g++ -Wall -O -fgcse// -frerun-loop-opt or -O2 produces spurious warnings in the standard// header <std/bastring.h>.//// They vanish if the declaration of a::b is taken out.#include <string>std::string foo();struct a {	void bar();	enum b { c, d };	b theb;	std::string baz;};voida::bar(){	baz += foo() + foo();	baz += foo() + foo() + "foo";}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?