1. Run command " ldd --version " will display the version of glibc that came with ldd.
2. Or run the below program
#include
#include
int main ( )
{
puts (gnu_get_libc_version ());
return 0;
}
3. Or just run the libc binary as
#/lib/libc.so.6
2. Or run the below program
#include
#include
int main ( )
{
puts (gnu_get_libc_version ());
return 0;
}
3. Or just run the libc binary as
#/lib/libc.so.6
Comments
Post a Comment