Code for calculating
square root without
using library function,
of math.h
Answer Posted / darshana
Dim i As Integer
Console.WriteLine("enter the number")
i = Console.ReadLine()
For a As Integer = 0 To 1000
If a * a = i Then
Console.WriteLine(a)
Exit Sub
End If
Next
| Is This Answer Correct ? | 5 Yes | 14 No |
Post New Answer View All Answers
What is conio h in c?
What are the types of type specifiers?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
How can I get the current date or time of day in a c program?
how do you programme Carrier Sense Multiple Access
What is function prototype?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is c language used for?
What are dangling pointers? How are dangling pointers different from memory leaks?
How will you divide two numbers in a MACRO?
Can you write the algorithm for Queue?
How variables are declared in c?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Why is c called "mother" language?
What is typedef example?