Right now I\'m trying this:
#include int main(int argc, char *argv[]) { if (argc != 3) { printf(\"Usage: %s %s sourcecode inpu
You need a pointer to the first char to have an ANSI string.
printf("%s", source + i);
will do the job
Plus, of course you should have meant strlen(source), not sizeof(source).
strlen(source)
sizeof(source)