#include
void main()
{
int rev(int);
int r,a;
clrscr();
printf("enter any no: ");
scanf("%d",&a);
r=rev(a);
printf("square is : %d",r);
getch();
}
int rev(int x)
{
return(x*x);
}
Output:
enter any no: 5
square is : 25
we can share the knowledge with our friends. So they can share with their friends. and so on... Finally You can turn back ...how many of them stand behind you....
Modified By Blogcrowds
No comments:
Post a Comment