eb21.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 25 行
C
25 行
#include <vector>#include <sstream>using namespace std;/*----------------------------------------*/struct connection_t { connection_t() {}};std::vector<connection_t> connections;/*----------------------------------------*/intmain() { ostringstream str; connections.insert(connections.end(), connection_t()); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?