Multiple choice ____ and ____ are the format specifiers used to print integers. %c and %d %f and %d %i and %d %c and %f %c and %i Reveal answer Fill a bubble to check yourself C Correct answer Explanation %i and %d are used to print integers. These are identical for printf( ) but different for scanf( ).