C/Console/Console Output float
Версия от 14:20, 25 мая 2010; (обсуждение)
Printf: output char, float and double
#include <stdio.h>
int main(void)
{
char ch;
float f;
double d;
ch = "X";
f = 10.23;
d = 13.09;
printf("ch = %c, ", ch);
printf("f = %f, ", f);
printf("d = %f", d);
return 0;
}