#include
#include
void main()
{
float i;
clrscr();
printf("enter no:_");
scanf("%f",&i);
if(i<0)
{
printf("value < 0");
}
else if(i>0)
{
printf("value > 0");
}
else
{
printf("value is zero");
}
getch();
}
this blog is for the new programmer in programing field...
0 comments:
Post a Comment