Top

Discussion

To print out a and b given below, which printf() statement would you use?

float a = 3.14;
double b = 3.14;

  • A.printf("%f%f",a,b);
  • B.printf("%Lf%f",a,b);
  • C.printf("%Lf%Lf",a,b);
  • D.printf("%f%Lf",a,b);

Answer: A

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment