main()
{
float f1=10.5;
double db1=10.5
if(f1==db1)
printf("a");
else
printf("b")
}
Answer Posted / sweet angel
the answer is a.
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
difference between object file and executable file
What is memory leak in c?
What do header files do?
What are the 4 types of programming language?
Is there a way to switch on strings?
How can I use a preprocessorif expression to ?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is pivot in c?
How can I make it pause before closing the program output window?
What are c identifiers?
Explain 'far' and 'near' pointers in c.
Describe the header file and its usage in c programming?
What is c token?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above