What is the output of this c code?
#include<conio.h>
int main()
{
int a=0.7;
clrscr();
if(a==0.7)
printf("equal");
else
printf("not equal");
getch();
}
.....................................
make required changes to run on linux...
also answer this
#include<stdio.h>
#include<conio.h>
int main()
{
float a=0.7;
clrscr();
if(a==0.7)
printf("equal");
else
printf("not equal");
getch();
}