7 ms·
Please, anyone can recommend a good tutorial to understand C++ functions arguments ? I'm starting coding in C++ and seeing this article makes me more confused.
by karatchov 16y ago
Please, anyone can recommend a good tutorial to understand C++ functions arguments ?
I'm starting coding in C++ and seeing this article makes me more confused.
- ori_b 16y agoJust read the ABI specs. A good start is the SysV ABI (refspecs.freestandards.org/elf/IA64-SysV-psABI.pdf), although it doesn't directly cover C++. Then, the C++ ABI is defined here - specifically, the Itanium ABI draft, which is in fact used on most GCC-supported systems, as far as I know. The "Itanium": is a misnomer. http://www.codesourcery.com/public/cxx-abi/ http://www.codesourcery.com/public/cxx-abi/