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
How can you avoid including a header more than once?
How can you determine the maximum value that a numeric variable can hold?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
How to set file pointer to beginning c?
how to copy a string without using c function
Why flag is used in c?
Do you have any idea how to compare array with pointer in c?
What is the maximum no. of arguments that can be given in a command line in C.?
How to declare a variable?
Is null always defined as 0(zero)?
Write a code to generate a series where the next element is the sum of last k terms.
Explain what will the preprocessor do for a program?