โช 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;
}
#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