0
About that term: %f
What does that do or mean in C? ----------> %f <---------- For exemple in this code: :::: #include <stdio.h> int main() { const double PI = 3.14; printf("%f", PI); //there it is!// return 0; } :::::
3 Respostas
0
I get it, thanks! It helps me well.