Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

GDB, how to debug macro

c gdb

REPEAT_BYTE(x) macro

Why bother using a float / double literal when not needed?

Why is using a generic Int that switches between 32 and 64 bits better than explicitly using Int32 and Int64 [closed]

c swift

JNI Accessing Object's Instance Variables

Why does this bitwise operation return 30 instead of 384?

c bitwise-operators dev-c++

Can a struct of doubles be typecast to an array of doubles in C?

c struct casting

realloc() an incremented pointer

c malloc

How to implement timespec accumulators?

c linux time

Confusion about DBL_EPSILON and Machine-Epsilon in C

c floating-point

Array as compound literal [duplicate]

c c99 compound-literals

How can an auto variable be volatile?

c

sizeof operator changing during runtime? [duplicate]

c++ c

How to use QEMU properly with multi boot headers

Two ways to initialize an array. What happens with each one?

c arrays

Concept of clock tick and clock cycles

c clock

Passing an array of 'typedef struct' to a function

c arrays typedef

Why use __attribute__((__format__ (__printf__,...) in Clang to avoid format string is not a string literal?

Bad file descriptor error when implementing piping in C

c shell file-io pipe piping

Does dynamic memory allocation reduce performace? [closed]

c++ c