Right now I\'m trying this:
#include
int main(int argc, char *argv[]) {
if (argc != 3) {
printf(\"Usage: %s %s sourcecode inpu
sizeof(source) returns the number of bytes required by the pointer char*. You should replace it with strlen(source) which will be the length of the string you're trying to display.
Also, you should probably replace printf("%s",source[i]) with printf("%c",source[i]) since you're displaying a character.