#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 / maniac
yes
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
How can I handle floating-point exceptions gracefully?
Explain how can I avoid the abort, retry, fail messages?
What are pointers in C? Give an example where to illustrate their significance.
What is extern storage class in c?
Why functions are used in c?
What are header files in c programming?
Where is c used?
Define the scope of static variables.
write a proram to reverse the string using switch case?
What do you understand by normalization of pointers?
What is time complexity c?
What is variable in c example?
Write a function that will take in a phone number and output all possible alphabetical combinations
Write a program to identify if a given binary tree is balanced or not.