Happy Coding Tamil
What will be the output of the program?#include<stdio.h> int main() { float a = 0.7; if(0.7 > a) printf("Hi\n"); else printf("Hello\n"); return 0; }
2 years ago | [YT] | 4
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
float a = 0.7;
if(0.7 > a)
printf("Hi\n");
else
printf("Hello\n");
return 0;
}
2 years ago | [YT] | 4