#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
What is the difference between printf and scanf )?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
swap 2 numbers without using third variable?
Write a code to generate divisors of an integer?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is the meaning of c in c language?
What is an expression?
What does c mean before a date?
Can i use “int” data type to store the value 32768? Why?
What is the difference between union and anonymous union?
Give differences between - new and malloc() , delete and free() ?
How does sizeof know array size?
What is %g in c?
What are the 5 data types?
Is c is a procedural language?