#include "stdio.h" main() { float c=432.5456; double d=123.987654; printf("c=%f,c=%e,c=%g\n",c,c,c); printf("d=%lf,d=%e\n",d,d); }