Consider the following correct segment of a correct C program: p = 2; while (p < 2000) { p = 2 * p; }What is the value of p after this while loop completes its execution()
单选题
Consider the following correct segment of a correct C program: p = 2; while (p < 2000) { p = 2 * p; }What is the value of p after this while loop completes its execution()