C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
I need to pass multiple arguments to a function that I would like to call on a separate thread. I've …
c pthreadsI came across an is_equals() function in a c API at work that returned 1 for non-equal sql tables (false) …
c logicI'm trying to send/receive data over an USB Port using FTDI, so I need to handle serial communication using …
c linux serial-port ttySay I have a C function which takes a variable number of arguments: How can I call another function which …
c variadic-functionsIn my project there is a method which only returns a const char*, whereas I need a char* string, as …
c pointers const-charWhat is the difference between AF_INET and PF_INET in socket programming? I'm confused between using AF_INET and …
c linux socketsI know how to create an array of structs but with a predefined size. However is there a way to …
c dynamic memory-managementI'm getting this error: warning: incompatible implicit declaration of built-in function ‘malloc’ I am trying to do this: fileinfo_list* …
c struct mallocI want to write a screencasting program for the Windows platform, but am unsure of how to capture the screen. …
c++ c windowsHow do you get to see the last print? In other words what to put in for EOF? I checked …
c input eof