saving . . . saved Square of numbers has been deleted. Square of numbers has been hidden .
Square of numbers
Title
Question
#include<stdio.h> </stdio.h>
<stdio.h>int main() </stdio.h>
<stdio.h>{</stdio.h>
<stdio.h> float number, square;</stdio.h>
<stdio.h> printf("Please Enter any integer Value:); </stdio.h>
<stdio.h>scanf("%f", &number); square number number; </stdio.h>
<stdio.h>printf("square of a given number %.2f is =%.2f", number, square);</stdio.h>
<stdio.h> return 0; </stdio.h>
<stdio.h>} </stdio.h>
<stdio.h>
</stdio.h>
<stdio.h>
</stdio.h>
<stdio.h>By</stdio.h>
<stdio.h>Gokulapriya M</stdio.h>
Ece department irtt
<stdio.h>
</stdio.h>

C-and-Cpp Functions 04-05 min 50-60 sec 06-12-21, 10:48 p.m. gokulapriya1804@gmail.com

Answers:

A meaningful program can be written as follows:
#include<stdio.h>
int main()
{
    float number, square;
    printf("Enter any integer Value:");
    scanf("%f", &number);
    square=number* number;
    printf("square of a given number %.2f is = %.2f", number, square);
    return 0;
}
10-01-22, 3:35 p.m. hbammkanti


Log-in to answer to this question.