#include<stdio.h>
#include<conio.h>
void main()
{
float a;
clrscr();
a=0.5;
if(a==0.5)
printf("yes");
else
printf("no");
getch();
}
Post New Answer View All Answers
What are two dimensional arrays alternatively called as?
Which node is more powerful and can handle local information processing or graphics processing?
How can I determine whether a machines byte order is big-endian or little-endian?
What is unsigned int in c?
What is methods in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
difference between native and cross compilers
What are header files why are they important?
write a program to find out prime number using sieve case?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is the purpose of realloc()?
application attempts to perform an operation?
Which is better malloc or calloc?
What is pointer & why it is used?
Write a simple code fragment that will check if a number is positive or negative.