5
Poprawny specyfikator formatu dla double w printf
Jaki jest właściwy specyfikator formatu doublew printf? Czy to %fjest czy jest %lf? Wierzę, że tak %f, ale nie jestem pewien. Próbka kodu #include <stdio.h> int main() { double d = 1.4; printf("%lf", d); // Is this wrong? }