square in c code example

Example 1: sqrt in c

#include <math.h>
double sqrt(double arg);

Example 2: c sqrt

double sqrt(double arg);

Example 3: square in c

#include <math.h>
int main()
{
	float number;
  	square = pow(number,2); //This returns number raised to the power 2
  	printf("The square of %f is %f", number, square);
  	return 0;
}

Example 4: square in c

#include <stdio.h>
int main()
{
	float number;
	printf("Enter a number: ");
	scanf("%f", &number);
	square = number * number;
	printf("square of the given number %f is %f", number, square);
	return 0;
}

Tags:

Misc Example