Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

What's the purpose of defining a C macro to be itself? (seen in glibc headers)

c c-preprocessor

Performance of duplicating vs deduplicating identical conditional code in loops

Function pointer compatibility between single pointer and empty parameter lists

c language-lawyer c99 c23

va_arg - different behavior on Linux and Windows

c variadic-functions

C Memory Error Debug Assertion Failed

What data structure for O(1) random insertion/deletion and O(1) random access?

Which order should allocated memory blocks be freed in?

c++ c memory-management malloc

How to make CMakelists.txt to include some *.c and *.h files only for one OS?

c++ c cmake cmakelists-options

Can a C #error macro display multiple line message?

Why does gcc -O1 optimization break this code modifying VRAM in a loop for a Gameboy Advance ROM?

Data structure alignment difference in Go and C

Representing big numbers in source code for readability?

c++ c c-preprocessor

Runtime of standard matrix multiplication algorithm slower than expected when scaled up (2^10+ x 2^10+ elements)

gdb breakpoint gets hit in the wrong line number

c linux gcc gdb

sizeof with a type or variable

c coding-style sizeof

How to initialize a a struct of structs inside a header file in C?

Which is the right style to use function pointer?

c pointers