Using the Windows Starter Visual Studio project createthe following program.
1.Write a program that will call a procedure to useminMax to push an array values into eax register
Solution
A stack is a linear data structurein the memory in which data can be stored and removed from alocation called the ‘top’ of the stack. The data that needs to beinserted is ‘pushed’ into the stack and data to be retrieved is’popped’ out from the stack. Stack follows LIFO data structure,means the data stored first is retrieved last.
To return value to EAX registercode:
void triple_noReturn() { // `a` at
OR
OR