#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


Please Help Members By Posting Answers For Below Questions

Explain is it better to bitshift a value than to multiply by 2?

703


What are local variables c?

539


What is openmp in c?

602


How arrays can be passed to a user defined function

568


What is the best organizational structure?

634






Do pointers store the address of value or the actual value of a variable?

602


What are pointers in C? Give an example where to illustrate their significance.

737


What is the difference between exit() and _exit() function in c?

572


Write a program in c to replace any vowel in a string with z?

680


What is the explanation for modular programming?

674


`write a program to display the recomended action depends on a color of trafic light using nested if statments

1625


why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above

646


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

1289


hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .

1895


How will you find a duplicate number in a array without negating the nos ?

1635