#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 / ak
yes
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Differentiate Source Codes from Object Codes
What is a good data structure to use for storing lines of text?
What are conditional operators in C?
What's the right way to use errno?
Explain what is meant by high-order and low-order bytes?
What is character set?
What is #line?
Is swift based on c?
Explain how can I avoid the abort, retry, fail messages?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Describe explain how arrays can be passed to a user defined function
Is main an identifier in c?
What would be an example of a structure analogous to structure c?
Can we use visual studio for c?
What is the difference between pure virtual function and virtual function?