In-Depth Analysis of GESP Certification C++ Questions for September 2025 (Multiple Choice)
1、After executing the followingC++ code, the value of c is ( ). int a = 10, b = 3;double c = a / b; A. 3.33333 B. 3.333 C. 3.0 D. 3.3 【Analysis】 Answer:C Key Point:Integer Division and Type Conversion Analysis: a / b is integer division, resulting in3 (the decimal part is truncated) Integer3 … Read more