Hi, Suppose there is a text file containing this:
int x = 10;
printf("Value of x is %d\n",x);
I need to write a C program which will open this .txt file and execute
the C statements in it. Is this at all possible? If so, how? Or is
there any alternative? Can I do the same by reading assembly
instructions and execute them by using inline assembly?
