#include<stdio.h>
#include<conio.h>
void main()
{
float a;
clrscr();
a=0.5;
if(a==0.5)
printf("yes");
else
printf("no");
getch();
}
Answer Posted / syam kumar
output is no
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
what is the height of tree if leaf node is at level 3. please explain
What are preprocessor directives in c?
Are pointers really faster than arrays?
How can I determine whether a machines byte order is big-endian or little-endian?
What is type qualifiers?
What is dynamic variable in c?
How to write c functions that modify head pointer of a linked list?
What does == mean in texting?
What are the types of operators in c?
Why malloc is faster than calloc?
What is the description for syntax errors?
What is an operator?
How can you convert integers to binary or hexadecimal?
Explain what are preprocessor directives?
What is meant by keywords in c?