#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
Describe how arrays can be passed to a user defined function
What are pointers? What are different types of pointers?
How many levels of pointers have?
How does free() know explain how much memory to release?
Which programming language is best for getting job 2020?
What is meant by inheritance?
How do you define a function?
all c language question
What does %d do?
Differentiate Source Codes from Object Codes
Is swift based on c?
What is a constant?
explain what is an endless loop?
What are the advantages and disadvantages of a heap?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above