Most Common Calling Conventions Most commons are cdecl, stdcall, fastcall In function calls, parameters are pushed onto the stack from right to left. Example Function Pseudo Code int func(int x, int y, int z, int m, int k); int a, b, c, d, e, ret;