basically this is a a my own blog to help ma students and friends with sharing useful information with the. information regarding C language code. .net applications, .net projects. general technical information. notes.
#include #include #include void main() { int num,root; clrscr(); printf("enter the number="); scanf("%d",&num); root=sqrt(num); if(num==root*root) { printf("Perfect Square"); } else { printf("not a perfect Square"); } getch(); }
No comments:
Post a Comment