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

Include text files in C source (See related posts)

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"
}

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts