Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

CMAKE_C_COMPILER not set, after EnableLanguage [duplicate]

Why can I implicitly convert an int literal to an int * in C but not in C++?

c++ c pointers casting

How to return a Python Enum from C extension?

python c enums python-c-api

Understanding CPU cache and cache line

c cpu-cache

How can I build my C extensions with MinGW-w64 in Python?

python c compilation 64-bit

C struct assignment by unnamed struct initialized by member-wise list, syntax candy or unintentional memory overhead?

c struct rvalue

Can I printf a half-precision floating-point value?

What determines when an array is considered a variable length array

arrays c

In Linux, can I make a file unchangeable while the process creating it is running while removable if the process has been terminated?

c linux file ipc

How to detect if a syscall exists on linux programmatically?

c linux system-calls

How can I read arguments in _start function?

c linux assembly 64-bit

why gcc is adding .comment and .note.gnu.property section?

c gcc ld

Compiling libuv with libwebsockets

Why doesn't strict aliasing rule apply to int* and unsigned*?

Initializing a struct with another struct

c struct copy

print array contents to a file using gdb

c++ c arrays debugging gdb

Is it bad to create static global variable in JNI implementations?

Are file descriptors shared when fork()ing?

c linux unix fork

In C, should inline be used in definition or declaration [duplicate]

c