Question:
Declare an array of char and initialize it to the string "cheeseburger".Answer:
char lunch[13] = "cheeseburger"; // number of characters + 1or
char lunch[] = "cheeseburger"; // let the compiler count elements
Find Tons of C++ Programming examples, projects with code. Also find books solutions.
0 Questions:
Post a Comment