Program to check equality in c

#include "stdio.h"

int main()
{
int x=3;
float y=3.0;
if(x==y)
printf("\nx and y are equal");
else
printf("\nx and y are not equal");
}

No comments:

Post a Comment