In the following C statement, what is the number 40 called?
amt = calculate_pay(40, 20.75);
a. output argument
b. formal parameter
c. actual argument
d. variable abstraction
e. none of the above
c. actual argument
Computer Science & Information Technology
You might also like to view...
What is the last step in the insertion process for a linked implementation of the ADT List?
a. Connect the new node to the linked chain by changing pointers b. Create a new node and store the new data in it c. Determine the point of insertion d. The order of these steps really doesn’t matter
Computer Science & Information Technology
What is another way that the condition below could be written? ? ( num
A. (num < 11 || num < 10) B. (num > 9) C. ( (num < 10) && (num = 10) ) D. ( (num < 10) || (num = 10) )
Computer Science & Information Technology