+ 3

what is mangling on c++?

8th Oct 2016, 5:42 PM
Pawan Sharma
Pawan  Sharma - avatar
3 Réponses
+ 2
can u give the example of name mangling given buy compiler?
10th Oct 2016, 2:14 PM
Joshna Reddy
Joshna Reddy - avatar
+ 1
C++ mangles all symbols, always. ... Name mangling is the process used by C++ compilers give each function in your program a unique name. In C++, generally programs have at-least a few functions with the same name. Thus name mangling can be considered as an important aspect in C++.
9th Oct 2016, 3:59 AM
Tiago J Goncalves
Tiago J Goncalves - avatar
0
https://en.m.wikipedia.org/wiki/Name_mangling The perfect example. Mangling is just the different names that the language gives to different functions. Biut in funtion
10th Oct 2016, 2:19 PM
Tiago J Goncalves
Tiago J Goncalves - avatar