write a program to find out square root of any number


/*write a program  to find out square root of any number */

#include<stdio.h>

#include<conio.h>

{

                int num;

                float s;

                clrscr();

                printf(" Enter a number =   ");

                scanf("%d",&num);

                s=sqrt(num);

                printf( "\n square root of number =%f ",s);

                getch();

}

/*

Out put 

Enter a number =4

square root of number =2

*/


                                                            👆😊😃😙

                                            


No comments:

Post a Comment

This Blog helps you to learn basics to high level programming coding and practicals.
conceptual understanding

c program, Advance coding, c++ program, simple program, Advance language

online quiz Application project page MCA final year project

  Here we making a quiz application ppt presentation for college project so that our project idea will like to our professor and teacher  fi...