hi

I'm trying to print in binary the data stored in a string..
here's the string:

char test[20];
strcpy(test, "any data");

so how to print the bits?
is there an escape sequence that i can use with printf to do that?


thanks