Skip to content

p021.c

Problem Statement

WAP to input a positive number and check if it is a perfect square number or not.

Metadata

Property Detail
Author Amit Dutta (amitdutta4255@gmail.com)
License MIT

Actions

Raw View on GitHub

💡 You can print or save this file by opening Raw and using your browser.

Source Code

#include <stdio.h>
#include <math.h>
int main()
{
    int n, temp;
    double sr;
    printf("Enter the number : ");
    scanf("%d", &n);
    sr = sqrt(n);
    temp = (int)sr;
    if (temp * temp == n)
        printf("\nThis is a perfect square.");
    else
        printf("\nThis is not a perfect square.");
    return 0;
}