SPC  Version 0.9.5
 All Files Functions Groups Pages
ex_sqrt.spc

This is an example of how to use the sqrt function.

task main()
{
int x = CurrentTick();
printf("x = %d\n", x);
x = sqrt(x);
printf("sqrt(x) = %d\n", x);
}