How can i get c(c++) interface library

Hi, allI’m noice in this solution, trying to develope a trading system usingKDB+(32bit)but I can’t find c library except c header file(k.h)how can i get that library ???

There are various libraries on the wiki under https://code.kx.com/trac/browser/kx/kdb%2B.See also the interfacing with C page at https://code.kx.com/trac/wiki/Cookbook/InterfacingWithC.On Feb 14, 7:18?am, biyawara <biyaw…> wrote:> Hi, all> I’m noice in this solution, trying to develope a trading system using> KDB+(32bit)> but I can’t find c library except c header file(k.h)>> how can i get that library ???</biyaw…>

thanks a lot !!On 2??14??, ???8??34??, Chris Burke <cdbu…> wrote:> There are various libraries on the wiki underhttps://code.kx.com/trac/browser/kx/kdb%2B.>> See also the interfacing with C page athttps://code.kx.com/trac/wiki/Cookbook/InterfacingWithC.>> On Feb 14, 7:18 am, biyawara <biyaw…> wrote:>>>> > Hi, all> > I’m noice in this solution, trying to develope a trading system using> > KDB+(32bit)> > but I can’t find c library except c header file(k.h)>> > how can i get that library ???- ??? ??? ??? ->> - ??? ??? ??? -</biyaw…></cdbu…>

http://kx.com/q/, where arch is your .z.o (l32, w32, m32, etc.)

I am not a C++ programmer but I have a question about using C++ withthe q library: does anyone know if static objects will cause anyproblems when mixing C++ to c.o? Also we probably will need to wrapk.h around with extern “C”?

http://kx.com/q/c/c/k.h
already contains

#ifdef __cplusplus extern"C"{ #endif

so you shouldn’t need to wrap k.h.

Ah sorry, I didn’t look closely enough!On Feb 16, 5:30?pm, Charles Skelton <char…> wrote:> http://kx.com/q/c/c/k.h&gt; already contains>> #ifdef __cplusplus> extern"C"{> #endif>> so you shouldn’t need to wrap k.h.>> On Wed, Feb 16, 2011 at 1:28 PM, K4 Monk <k4m…> wrote:> > I am not a C++ programmer but I have a question about using C++ with> > the q library: does anyone know if static objects will cause any> > problems when mixing C++ to c.o? Also we probably will need to wrap> > k.h around with extern “C”?>> > –> >

Submitted via Google Groups</k4m…></char…>