#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


Please Help Members By Posting Answers For Below Questions

Why can't I perform arithmetic on a void* pointer?

632


What do you know about the use of bit field?

603


Why c is a procedural language?

578


What are qualifiers and modifiers c?

540


What is the function of volatile in c language?

660






What are header files why are they important?

572


What’s a signal? Explain what do I use signals for?

600


What will be the outcome of the following conditional statement if the value of variable s is 10?

755


What is the method to save data in stack data structure type?

600


What is NULL pointer?

671


How will you declare an array of three function pointers where each function receives two ints and returns a float?

773


What is a const pointer in c?

665


What is calloc()?

623


How many main () function we can have in a project?

607


What does the characters “r” and “w” mean when writing programs that will make use of files?

848