非常快的问题。我要复制&使用 include 指令将文本数据粘贴到单独文件的源代码中。
合法吗?
struct Record; // collection of data fields
Record rec = { #include "some_big_record.txt" };
int numbers[] = { #include "some_long_sequence_of_numbers.txt" };
它适用于我的盒子(GCC),但它是否可移植?
答案 0 :(得分:8)
这是便携式的:
Record rec = {
#include "some_big_record.txt"
};