I have a text file. In this file there is a single function." printf("Hello World"); "
What I want to do is to read the function from the text file and use the function in my program.
Instead of just writing printf("Hello World") in my program I want to be able to call this function from my file. So I read the file and whatever is in the file gets used in my program.
Any ideas would be great. Been trying to figure this out for ages : (