Is there an easy way to escape all special characters in the printf()
function?
The reason why I would like to know how to do this is because I am printing a number of characters which may include special characters such as the null character () and the beep character and I just want to see the contents of the string.
Currently I am using the following code
It works for null characters. What would be the easiest way to escape all special characters?
int length;
char* data = GetData( length ); // Fills the length as reference
for( int i = 0; i < length; i++ )
{
char c = data[ i ];
printf( "%c", ( c == 0 ? '\0' : data[ i ] ) );
}
See Question&Answers more detail:os