As vikas pointed out call_stack is used for this purpose. Every process/program has a stack segment which creates an entry on every function call which contains the following in the given order
1. Arguments
2. Return Address
3. Local Variables
So obvious argument are created first...