Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Function in C returning MYSQL_RES

mysql c

Average of # Sequence

c

pthread_mutex_lock blocks but __lock = 0

c++ c multithreading mutex

Unusual syntax for bitfield declaration

c gcc

Include only certain libraries on an operating system

Replacement for linker sections in pure C

c linux linker cross-platform

Understanding argv and *++argv[0]

How to visualize the layout of a C struct with bitfields in memory?

c struct

Understanding typedef with struct [duplicate]

c struct typedef

Where's my pointer error?

c realloc

How can I modify the application file of an application that is currently running (on Linux)?

c++ c linux locking io

Testing big endian without real big endian processor

c endianness

Draw a line next to word in WinAPI

c winapi user-interface

How can I simplify the calling of this function?

Is it better style to initialize a structure by passing a reference or returning it?

Using C union with SSE intrinsics in Cython results in SIGSEGV

python c cython sse

Behaviour of global variable in C

Is there any difference between &a[i] and a+i, where a is int*?

c language-lawyer