In C++11, assuming mychar is a char variable and mystring is a string, what is the value of mychar after the following statement executes?
```
mychar = mystring.front();
```
a. the ASCII value of the first character of mystring
b. the first character of mystring
c. nothing, the function is missing an argument
d. this will cause a compiler error
b. the first character of mystring
Computer Science & Information Technology
You might also like to view...
The ability to store and generate passwords, provide logging and auditing capabilities, and allow password check-in and check-out are all features of what type of system?
A. AAA B. Credential management C. Two-factor authentication D. Kerberos
Computer Science & Information Technology
Data becomes _______ when it is presented in a format that people can understand and use.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology