Display the following values by using the printf() function.
127 3.1415926535 12345 0.00008
Use the appropriate conversion characters, either %d or %f.
#include <stdio.h> int main()//w w w .j a v a2 s . c o m { printf("%d\n",127); printf("%f\n",3.1415926535); printf("%d\n",12345); printf("%f\n",0.00008); return(0); }