#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 advantage of pointer in c?
What does a function declared as pascal do differently?
What is data structure in c programming?
Is calloc better than malloc?
When is a null pointer used?
What is the difference between array and pointer?
How many levels deep can include files be nested?
c program to compute AREA under integral
What is a list in c?
Can you please explain the scope of static variables?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is the purpose of 'register' keyword?
What does it mean when a pointer is used in an if statement?
Can you write the algorithm for Queue?
When should you not use a type cast?