[ create a new paste ] login | about

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

C++, pasted on Dec 6:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include <math.h>

using namespace std;




int main()
{
	int a=1;

	cout << sizeof ( sin ( (float) a) ) << endl;
        cout << sizeof ( sin (  a ) ) << endl;
	cout << sizeof ( sin ( (long double) a) );

	return 0;
}


Output:
1
2
3
4
8
12


Create a new paste based on this one


Comments: