main()
{
float f1=10.5;
double db1=10.5
if(f1==db1)
printf("a");
else
printf("b")
}
Answers were Sorted based on User's Feedback
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
Without Computer networks, Computers will be half the use. Comment.
What are type modifiers in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
wite a programme in c to linear search a data using flag and without using flags?
what is a stack
What is the difference between i++ and i+1 ?(in terms of memory)
Give the Output : * * * * * * * * * *
How to compare array with pointer in c?
why we are using float in C