#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


Please Help Members By Posting Answers For Below Questions

cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

626


what is a constant pointer in C

664


Can we declare function inside main?

558


What is the difference between test design and test case design?

1564


Why is event driven programming or procedural programming, better within specific scenario?

1945






What is a list in c?

610


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

1616


What is the use of ?: Operator?

660


Explain how can I open a file so that other programs can update it at the same time?

581


What is a constant and types of constants in c?

594


How can I avoid the abort, retry, fail messages?

645


Differentiate between null and void pointers.

622


What is the return type of sizeof?

581


Is there sort function in c?

570


What are the disadvantages of c language?

610