#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 / sandeep
HI froends this is sandeep,
Coming to the question :
First of all we should know that in c language:
integers by default are treated as int,
and numbers with decimal point as double.
so int the ques tion "a is float",but "0.5 is double by default" and "double > float by default"
so "a==0.5" turns out to be false,
so else statement will be executed
output:no
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is the difference between abs() and fabs() functions?
What are the rules for the identifier?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What are the primitive data types in c?
Describe wild pointers in c?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Write a code to generate a series where the next element is the sum of last k terms.
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Write a program to print fibonacci series using recursion?
Why we use conio h in c?
Why c is called object oriented language?
Write a program to print numbers from 1 to 100 without using loop in c?
How many levels of indirection in pointers can you have in a single declaration?