Your channel is underrated, love the contents you posted. Much useful, Thanks 👍 I'm gonna recommend your Cpp videos to my peers 🙂
@senthilandavanp5 жыл бұрын
Nice video with the example. Name mangaling-> Compiler creates a functName for each function/Class member functions to implement the function overloading concepts How to see the symbol table(how name mangling change the function in the symbol table) $ nm xxx.o example of c program to show function will not be changed in the symbol table. Based on the compiler , name will be mangled in little different way I believe. Could you add a video for the operator overloading how it works internally
@prathameshdanej49286 ай бұрын
Best of explanation with practical
@kunalprasad7224 жыл бұрын
Can you please make any video that why making function in classes don't increase its size but adding some variable in class or structure increase its object size?
@vvpChannel31125 жыл бұрын
what is that T or U before mangled function name in symbol table?
@khurshidsahaji51836 жыл бұрын
"g++ -6 -c app.cpp" what does "-6" mean ?
@CppNuts6 жыл бұрын
It is g++ version.
@akhil94175 жыл бұрын
which compiler are u using ?can u suggest me best compilers in windows
@CppNuts5 жыл бұрын
you can use mingw to install gcc in windows and use any editor like sublime text editor to edit your program and compile it using gcc. In short there are two things: 1. Editor to write your program (Use Sublime Text Editor, i use it) 2. You need compiler to compile your program (If in windows use mingw to install gcc in windows and compile your program using gcc) Now the only point remains is you have to have connectivity b/w Editor and gcc so for that you will get online videos like: "How to compile c or c++ program in sublime text editor in windows" google this much you must get some video or link AND YOU ARE DONE..