Include Text Files In C Source
Join the DZone community and get the full member experience.
Join For FreeThis 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"
}
Opinions expressed by DZone contributors are their own.
Comments