#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
Tell me can the size of an array be declared at runtime?
if p is a string contained in a string?
What type of function is main ()?
write a program fibonacci series and palindrome program in c
Write a program to check whether a number is prime or not using c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
How do you print an address?
Write a program to print fibonacci series using recursion?
How to throw some light on the b tree?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What will be the outcome of the following conditional statement if the value of variable s is 10?
Why is c called c?
How can I open a file so that other programs can update it at the same time?
in iso what are the common technological language?
What are bitwise shift operators in c programming?