Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

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

Difference between scanf for char * and char [ ]?

c

How to reduce time complexity in traversing a string?

Is reading an uninitialized value always an undefined behaviour? Or are there exceptions to it?

lua_numbertointeger - why can we assume INT_MIN has an exact representation as a float?

c lua