Questions tagged [.lib]

.lib is standard extension for static libraries under Microsoft operation systems.

.lib is standard extension for static libraries under Microsoft operation systems.

123 questions
-2
votes
1 answer

Working with .h and .lib files in c++

I have a problem, I have a few header.h files and one library.lib file and nothing more. Is it possible to execute functions from header files in new project? Thanks for answers :)
Meskis
  • 21
  • 2
-3
votes
1 answer

Using .lib file in linux

I have been given a dukpt.lib file and corresponding header file. I have to make a webservice in c++ (gSOAP)which internally make use of methods from dukpt.lib dukpt.lib make use of win api internally . so my question is :Is there any possible way…
Satish2230
  • 13
  • 6
-7
votes
2 answers

Executing .lib in C compiler

I have created a .lib file that should generate random integers into an array and print them out. The array is then sorted into lowest to highest and then printed again. I am able to compile all the object files and create a library with them, but…
1 2 3
8
9