SysTutorials
  • SysTutorials
  • QA
  • Linux Manuals
  • Linux
  • Systems
  • Subscribe
  • Submit
  • Login
  • Search
  • Twitter
  • Facebook

Posts tagged Library

5 posts in total.

How to make a static library (.a) on Linux

By Q A | In QA | On Mar 24, 2018

How to make a static library (.a) on Linux? How to generate a library from C programs in files lib1.c and lib2.c: $ gcc -c lib1.c lib2.c Create a library “libmy.a” using ar: $ ar -cvq libmy.a lib1.o lib2.o You can also list the files in a library with ar: $ ar -t libmy.a You […]

Continue Reading How to make a static library (.a) on Linux

How to list the functions in a .a library on Linux

By Q A | In QA | On Mar 24, 2018

How to list the functions in a .a library on Linux? You can use the nm command: The nm utility shall display symbolic information appearing in the object file, executable file, or object-file library named by file. If no symbolic information is available for a valid input file, the nm utility shall report that fact, […]

Continue Reading How to list the functions in a .a library on Linux

Is cin much slower than scanf in C++?

By Q A | In QA | On Mar 24, 2018

I frequently hear that cin is significantly slower than scanf in C++. Is this true? And how to improve the efficiency of cin? It is really nice to use most of time. One discussion about that cin is very slow is here: http://apps.topcoder.com/forums/?module=Thread&threadID=508058&start=0&mc=7 Answered by anonymous. In short: cin is not always slower (can be […]

Continue Reading Is cin much slower than scanf in C++?

How to call C functions from OCaml code

By Q A | In QA | Updated on Mar 27, 2018

I am writing a OCaml program but want to call some C functions provided in some source code or library. How to achieve this? Is there any good tutorials on this? A very good tutorial that is easy to follow and understand: How to wrap C functions to OCaml. A comprehensive reference manual: Chapter 19 […]

Continue Reading How to call C functions from OCaml code

Hashing Library for C

By Eric Z Ma | In Programming | Updated on Mar 27, 2018

I try to find some Hashing libraries for C and find several good ones. The hsearch function in the GNU C library. There are other methods to organize information which later should be searched. The costs of insert, delete and search differ. One possible implementation is using hashing tables. The following functions are declared in […]

Continue Reading Hashing Library for C
SysTutorials
  • Contribute
    • Log in
  • Linux Manuals
    • Linux Man Pages
    • Linux Packages Manuals
  • JPG to EPS Converter
  • BB Code Editor
  • What Is My IP
  • SysTutorials Search
  • Subscribe
  • Readings on Systems
  • Advertise
  • About
    • News and Feedbacks
    • License and Policy
    • Contact
Subscribe
Get notified when new posts are published.
Categories
  • Insights (5)
  • News (13)
  • Project (6)
  • QA (823)
  • Systems (22)
    • Computing systems (11)
    • Resource management (2)
    • Storage systems (10)
  • Tutorial (360)
    • Hardware (9)
    • Linux (222)
    • Mobile (8)
    • Network (23)
    • Programming (64)
    • Software (71)
    • Virtualization (30)
    • Web (48)
Tags
Bash C CentOS centos7 Chrome Client config Command Command line domu emacs Email Fedora file gcc Git gnome hadoop hdfs Howto html iPhone iptables Linux Linux Mint LVM Network ocaml PDF PHP Programming python Server config shell Software SSH System text Tip Tutorial ubuntu vim Web Windows wordpress xen
Recent posts
  • How to enlarge root partition and filesystem size of cloud Linux VM at runtime without rebooting Linux
  • Do big data stream processing in the stream way
  • How to set up Insync to synchronize Google Drive and Google Docs files in Ubuntu 18.04 Linux
  • Thunderbird Addons to Make Thunderbird Easier to Use
  • Handling Sparse Files on Linux
  • How to Add a File Based Swap for Linux
  • How to resize a virtual disk of KVM
  • How to not use concrete types in lambda function parameters in C++11?