Give the declaration for two variables, feet and inches. Declare each to be of type int, and both initialized to zero in the declaration. Give both initialization alternatives.
What will be an ideal response?
int feet = 0;
int inches = 0;
//Alternate initialization.
int feet (0);
int inches(0);
Computer Science & Information Technology
You might also like to view...
The type cover provides a(n) ________ similar to traditional keyboards
A) ergonomic keyboard B) depression keyboard C) heat sensitive D) virtual keyboard
Computer Science & Information Technology
To prevent a report from printing blank pages, the user should remove extra space from the report
Indicate whether the statement is true or false
Computer Science & Information Technology