#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 / rajan12233

yes

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

773


The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none

700


A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor

616


Is c easy to learn?

550


What is a good data structure to use for storing lines of text?

583






What is a pointer in c?

677


What is the difference between fread and fwrite function?

629


Does * p ++ increment p or what it points to?

600


What is hashing in c language?

603


What is difference between class and structure?

561


What are variables c?

605


Why c is known as a mother language?

629


What is c mainly used for?

588


Give me the code of in-order recursive and non-recursive.

872


Is main is user defined function?

583