What is the output of this C code ?
Function main() {
Integer i = 0.7 Static float m = 0.7
If(m equals i)
Print(“We are equal”)
Else
If(m > i)
Print(“I am greater”)
Else
Print(“I am lesser”)
}
A. We are equal.
B. I am greater.
C. I am lesser.
D. This code will generate an error.
Answer : D. This code will generate an error.
Explanation:
- Two different data types cannot be linked with each other without type-casting.