hide part of a C code from strings command

Viewed 23

This is part of my code:

snprintf(exec, sizeof(exec), \"bash %u\",variable1);

However if I run a strings command against my binary file, I see:

bash %u

How can I prevent this from being displayed if someone run a strings command against my binary file?

0 Answers
Related