What is the purpose of the following lines of code?
double price, taxRate, subtotal, total;
int quantity;
1
Expert's answer
2013-01-24T09:39:41-0500
In the first line - variable declaration float,for each variable allocated in stack memory - 8bytes, in the second line - is declared integer variable,for one allocated in stack-memory - 4 bytes.
Comments
Leave a comment