What is the result of `sizeof(int) / sizeof(int*)` on a 64-bit system?
Q1. What is the result of `sizeof(int) / sizeof(int*)` on a 64-bit system?
Answer: 1/2
Explanation: On a 64-bit system, sizeof(int) is typically 4 and sizeof(int*) is 8, so the result is 4/8 = 1/2.