#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
What is the purpose of main( ) in c language?
Explain the array representation of a binary tree in C.
Is there a built-in function in C that can be used for sorting data?
What is %lu in c?
How does free() know explain how much memory to release?
What does 4d mean in c?
Explain how can I pad a string to a known length?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What are enumerated types?
Explain how do you determine a file’s attributes?
How do you define a string?
What are the disadvantages of external storage class?
In c programming language, how many parameters can be passed to a function ?
What is the difference between %d and %i?
How many types of arrays are there in c?