5. Write the declaration for which, a pointer to a constant char. 6. Declare a c
ID: 3726427 • Letter: 5
Question
5. Write the declaration for which, a pointer to a constant char.
6. Declare a constant object of the class Student. Assume that the default constructor for the class will supply suitable values for the data members (i.e., you don't need to supply any).
7. For the next four questions, assume that you have the following variable declaration, which is placed at the top of a source code file called quiz6.cpp, outside of any function definition: int studentCount = 0; What is the storage class of this variable?
8.What is the scope of this variable?
Explanation / Answer
5) const char *
6) const Student student;
7) int
8) global score / application level scope
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.