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
What are the advantages of using new operator as compared to the function malloc ()?
Is c dynamically typed?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What does the characters “r” and “w” mean when writing programs that will make use of files?
Why do we use null pointer?
What are the different types of objects used in c?
What is bubble sort technique in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is the purpose of & in scanf?
When is a “switch” statement preferable over an “if” statement?
what is the diffrenet bettwen HTTP and internet protocol
Is a house a mass structure?
What is FIFO?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer