[ create a new paste ] login | about

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

C, pasted on Jul 25:
1
2
3
4
5
6
7
8
9
10
float Function()
{
    return 1.0f;
}
int main() {
float value;
value = Function(); 
fprintf(stderr, "Printing 1.0f: %f", value);
return 0;
}


Output:
1
Printing 1.0f: 1.000000


Create a new paste based on this one


Comments: