8 lines
97 B
C
8 lines
97 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
void main()
|
|
{
|
|
printf( "%f\n", atan2( .5, 1. ) );
|
|
}
|