Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

C - Should Function Implementations in Header use extern/inline/static?

c static header inline extern

How are shared libraries addressed in each processes memory?

c linux executable elf

Compiling and linking C code without any additional data in output file

c gcc operating-system ld osdev

Alternative to printf with limited number of arguments?

Reading a line from a file that includes integers

c

read on a pipe blocks until program running at end of pipe terminates - Windows

c linux ipc popen blocking

Performance improvement strategies for VM / interpreter?

Size of Pointer Variables

c pointers variables size

TCP : recv() getting ECONNRESET

c sockets tcp

How to get the correct value of / and % operators?

c operator-keyword

A couple of questions on recursive functions in C language

c recursion scope

Ways to make a Roguelike in native C

c native roguelike

Getting size of a specific byte array from an array of pointers to bytes

c arduino

Does a procedure call in the same object module require relocation in the link stage

c linux compilation linker gnu

Does VirtualLock really do what it say?

c++ c windows

Increasing performance of 32bit math on 16bit processor

c performance 32-bit pic 16-bit

RDTSC in C inline assembly causes segmentation fault!

Undefined behavior in C [duplicate]

Any difference or risk between"var&0xFFFFFFFFu" vs. "var&0xFFFFFFFF"?

c

Why does the second macro fail to compile with "invalid use of void expression" while the first works?

c ternary