Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Is it safe to pass a void pointer to function that accepts a non-void pointer?

c pointers void-pointers

Disabling CPU idle C-states from kernel-mode driver

How can adding a function call cause other symbols to become undefined when linking?

In the DWARF info, what do they exactly mean by the DW_OP registers?

c++ c debugging stack dwarf

Spaghetti code visualisation software? [closed]

Variable declaration vs definition

c

Stack Smashing attempt giving segfault

c buffer-overflow shellcode

Why can I assign structs but not compare them

c struct compare assign

Writing a JIT compiler in assembly

Initializing a multidimensional array: {0} versus {{{0}}}

c arrays initialization

Why the fwrite libc function is faster than the syscall write function?

c linux

Why sizeof built in types except char is compiler dependent in C & C++?

c++ c types

Efficiently dividing unsigned value by a power of two, rounding up

Does *p++ increment after dereferencing? [duplicate]

c operators

With Clang or similar compilers, is it possible to turn only some warnings into errors?

c++ c clang compiler-warnings

what is `int *userMask[3][4]` pointing to?

c arrays pointers

Ways to ASSERT expressions at build time in C

Tokenizing strings in C

c string tokenize

How to use external .c files with CGO?

c import go cgo