<<< Previous question <<< Question ID#0740.md >>> Next question >>>
What is will the output of this code be?
echo strcmp(12345, '12345');
- A) zero because (int)12345 is equal to (string)12345
- B) less than zero because (int)12345 is less than (string)12345
- C) all
- D) greater than zero because (int)12345 is greater than (string)12345
Answer
Answer: A