Never been to DZone Snippets before?

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

About this user

Alexandru Scvortov

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

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"
}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS