What will be output of the following “c” code?


Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include

int main()

{

float i, j;

scanf(%f %f, &i, &j);

printf(%.2f %.3f, i, j);

return 0;

}


What will be the output for the give input 12.342 and 123.4568

A. 12.34 123.456
B. 12.342 123.4568
C. 12 123
D. Compilation Error