[ create a new paste ] login | about

Link: http://codepad.org/EKkuGvev    [ raw code | output | fork ]

C, pasted on Apr 19:
1
2
3
4
5
6
7
8
9
#include<stdio.h>
#include<math.h>
void main()
{
    int num = 25;
    int result;
    result = sqrt(num);
    printf("%i",result);
}


Output:
1
5


Create a new paste based on this one


Comments: