Right now I\'m trying this:
#include int main(int argc, char *argv[]) { if (argc != 3) { printf(\"Usage: %s %s sourcecode inpu
Just change sizeof with strlen.
Like this:
char *source = "This is an example."; int i; for (i = 0; i < strlen(source); i++){ printf("%c", source[i]); }