
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to listdown all the symbols in a .so file in C++
To read a .so file in elf format, use readelf
readelf -Ws libName.so
It helps to extract symbol from binary.
The standard tool used for listing all symbol is, nm
nm -g libName.so
Advertisements