Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

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]

Having a little trouble understanding memory allocation in C

Global variable losing data in C?

c

Does every function get its own stack in c?

c gcc stack-overflow

Is incrementing a _Bool defined?

What does initializing a string to {0, } do?

c string initialization

What is __libc_start_main and _start?

c linux gcc gdb elf

Compiling C code in Julia benchmark tutorial

c gcc julia

Dereferencing an uninitialized pointer to pass into sizeof()

Does recursion in the C preprocessor abuse an inconsistency in the standard?

How to make an output function similar to Python's in C?

python c output

Memory does not get allocated with the MAP_ANONYMOUS and MAP_SHARED_VALIDATE flag in mmap()

c linux unix mmap

C getline memory leak different behaviours

Why is it possible to pass a double pointer (address of address) to scanf?

c scanf

Can a system call happen in a C program? [duplicate]

c function system-calls libc

Where is an enum stored?

c assembly enums compilation