[ create a new paste ] login | about

Link: http://codepad.org/h6FgFVDr    [ raw code | output | fork ]

C, pasted on Sep 15:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
int main ()
{
float x;
float y;
scanf ("%f", x);
y=x*100;
printf ("%f\n", y);
return 0;
}


Output:
1
0.000000


Create a new paste based on this one


Comments: