Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Assign volatile to non-volatile sematics and the C standard

Is it undefined behavior to get the address of an array element that is out of bounds?

c arrays undefined-behavior

Why is fgets call ignored if input is of specific size and format?

c string

Does WebAssembly run faster if written in C as opposed to Python?

python c webassembly

Using a pointer to struct returned from a function

Why is running Quake II as root stupid?

c root quake

What happens in the assembly output when we add "cc" to clobber list

c gcc inline-assembly

Most efficient formula for unpacking 16-bit BCD? (e.g. 0x1234 to 0x01020304)

Complexity to find if there is a missing element in an array

c arrays complexity-theory

Structs and unions: which is better from a performance point of view? Passing the parameter by value or pointer?

What is the purpose of having a function prototype in a function?

c++ c

Why does LD_PRELOAD work with syscalls? ​

Step by step C compilation result in segfault

c linux compilation ld

Is it possible to show errors when I write C++ code in C?

Why is max stack depth keeping changing?

c windows

define macro as linenumber

Why does a negative number converted to size_t become a huge number in C?

c unsigned size-t

In C, is it more space efficient to declare a 2 dimensional array of chars or a ragged array of strings? (specific question below)

c arrays string performance char

Is jumping over/removing `PHDR` program header in ELF file for executable OK? If so, why?

c++ c elf readelf

Why do most linked list looping macros in the kernel skip the first element? [duplicate]