Hi!
I have a line in my code like this:
system("gle -d pdf c:/GLE-Creator1.0/teszt1");
This work just fine.
But if i make flexible my code, via using a char :
char glename[300];
for example, it doesnt work, i get error code -3, "cannot open file"
system(glename); --->this way it is not working..
(the printf("%s", glename); gives this result: "gle -d pdf c:/GLE-Creator1.0/teszt1" so just exactly the same like in the
working one... Why does'nt work this way?
Thank you very much for the help,
regards,
Andras B-D.