Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

POSIX getline() - line buffer state on EOF?

c posix getline

How multiple process are able to use STDIN/STDOUT simultaneously?

Linux, Understanding setsockopt() PACKET_FANOUT for network scaling

Is it guaranteed that global variables are always initialized to 0 with c99?

c variables initialization c99

Does strict aliasing apply when using pointers to struct members?

c strict-aliasing

warning: ISO C90 forbids mixing declarations and code [-Wdeclaration-after-statement] [duplicate]

c c89

Can't find the env passed into execve function

c execve

Why need the (void *) in the pointer conversion?

c pointers

What does `(c = *str) != 0` mean?

c++ c pointers syntax

Should I use the stdint.h integer types on 32/64 bit machines?

c integer typedef stdint

When C 'deallocates' local stack variable? [duplicate]

c pointers variables

Why do we need to include the C or CPP declaration files during compilation and not the default libraries like iostream?

c++ c gcc

operand of type 'void' where arithmetic or pointer type is required - C

c integer type-conversion void

What is the difference between "rb+" and "ab" in fopen()?

c fopen

Does the order of multiplication variables of different data type cause different results?

c integer-promotion

How to print out errors in the console with the C API for Lua

Lua C API: Initializing a variable matrix in a structure C

What does POSIX mean by "two's complement representation" in stdint.h?

c posix language-lawyer

Why can't you increment/decrement a variable twice in the same expression?

c compiler-errors

Wait for child process without using wait()

c multithreading