DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Include Text Files In C Source
This includes the contents of myfile.txt into the char array text.
Note: This only works if ALL lines in the file are enclosed in "s.
Wrong myfile.txt:
Hello world
Goodbye world
Right myfile.txt:
"Hello world"
"Goodbyle world"
""
char text[] = {
#include "myfile.txt"
}





