Solved

The Code Int X = 0; While (S[x] != 0)

Question 10

Multiple Choice

The code int x = 0; while (s[x] != 0) { x++;}


A) sets the variable x to point to the last character in the C-string s.
B) computes the length of the C-string s into the variable x.
C) sets the variable x to the ASCII code of the last character in the C-string s.
D) sets the value of the variable x to 0.
E) None of the above

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions