Find square and square root for a given number in C
By: Jeffrey
This simple C program shows how to find square and square root for a given number.
#include <math.h> /* for sqrt() function */
#include <stdio.h>
int main( )
{
/* variable named x with floating-point data type */
float x;
/* standard output writing a positive floating number */
printf("\nEnter one positive number (1, 2, 3. . .): ");
/* standard input reading floating number */
scanf("%f", &x);
printf("\nx = %f ", x);
printf("\nSquare for x is = %f", x * x);
// sqrt() is the predefined function, defined in math.h
printf("\nSquare root for x is = %f\n", sqrt(x));
return 0;
}
Archived Comments
Comment on this tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Sum of the elements of an array in C
Printing a simple histogram in C
Find square and square root for a given number in C
Simple arithmetic calculations in C
Passing double value to a function in C
Passing pointer to a function in C
Infix to Prefix And Postfix in C
while, do while and for loops in C