Does anyone know if an underscore as format specifier (like %_f) does anything in C code? I+ve found some code in a book that uses it, but I've googled and found nothing. I've also tested the following Objective-C code in Xcode and Xcode seems not to support this specifier. Is it valid in C?
-(void) print {
printf( "%_f + %_fi", real, imaginary );
}
Thanks!