Here's a more portable version of the program:
#include <stdio.h>
#include <math.h>
int main(void)
{
double x;
printf("Enter angle (in radians): ");
fflush(stdout);
scanf("%lf", &x);
printf("sin %lf = %lf\n", x, sin(x));
return 0;
}
The changes I've made are:
Drop #include <conio.h> and the calls to clrscr() and getch();. These are Windows- (or MS-DOS-) specific. That's not necesarily to say that you shouldn't use them (they exist for a reason), but you should at least be aware that they make your program less portable than it could be. (And why do you want to clear the screen anyway? I might have information there.)
Change void main() to int main(void). Compilers are allowed to accept void main(), but it's non-portable, and there is no good reason to use it rather than the completely portable int main(void). (Unless you're writing code for an embedded system that doesn't like int main(void), but that's not the case here.)
Add fflush(stdout); after the prompt. This may not be necessary, but it's possible that the prompt won't appear without it. Portability again.
Add return 0; to the end of the program. In the 1990 version of the C standard, falling off the end of the main function without a return statement returns an undefined status to the environment; in C99, there's an implied return 0;, but it doesn't hurt to make it explicit.
As for the behavior of both your original program and this modified one, sin(3.14) is approximately 0.001593. But even if you had entered a more precise value of pi, sin(x) still wouldn't give you exactly 0.0, because floating-point cannot represent the value of pi exactly. If you show the result with more precision, you'll see that sin(3.14159265358979323846264) comes out to something like 0.00000000000000012246063538223772.
Finally, the purpose of your getch() call is to make the program wait for you to press a key before it terminates (and, presumably, the window in which the output appears vanishes). That's typically needed for Windows-style IDE environments, but if you run the program from a command prompt it's unnecessary. Again, I'm not telling you not to call getch(), just that you don't necessarily need it.
sinfunction expects the angle to be in radian (i.e. 180 degrees = pi radians) – Aleks G Oct 16 '11 at 16:50