View difference between Paste ID: xVEDhbTS and mhxL4idG
SHOW: | | - or go back to the newest paste.
1
#include <stdio.h>
2
main()
3
{
4-
printf("%f\n",sqrt(2));
4+
double sqrt();
5
printf("%f\n", sqrt(double 2));
6
}