
main() {
  float x;
  x = sin(30);
  printf("%f\n",x);
}

/* COMPILER OUTPUT:
Compiling was fine, but sin(30) gave answer 30.000!!! :-/
 */

/* REASON: 
Did not refer to the math library so sin() is unknown.
 */
