{}
run-icon
main.c
#include <stdio.h> #include <math.h> int main() { double z; z = sin(pow(10.0, 30.0)); printf("%f", z); return 0; }
Output