Answers for "c double specifier"

C
2

c double specifier

#include <stdio.h>

int main()
{
   double d = 1.4;
   printf("%lf", d); // Is this wrong?
}
Posted by: Guest on September-01-2021

Code answers related to "C"

Browse Popular Code Answers by Language