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
What is the difference between null pointer and the void pointer?
Why pointers are used in c?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
Can we increase size of array in c?
How to print %d in output
What is the use of sizeof () in c?
Describe the modifier in c?
What are the loops in c?
What are the advantages of using macro in c language?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
What do you mean by keywords in c?