Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Why a*b/c instead of a*(b/c) gives 3x bigger program size on AVR?

c assembly gcc avr atmega

C printf: Is there a way to add text after variable and before spacing?

c printf

Getting list of PIDs from /proc in Linux

c linux pid procfs

What is the size of /proc/%u/fd/%u

c linux

What could be the benefit of such a complicated function to test if variable is not zero?

Is it safe to do something like foo(x, &x)?

Approximating cosine on [0,pi] using only single precision floating point

Suspicious case statement syntax accepted by C compilers

c syntax compiler-errors

Most efficient way to find prime factorization of 2 for a positive integer

c optimization

C %p printing 16 instead of 8 bytes

c pointers printf

Reason why int(*g)(int) into int(*h)(char) causes error?

c++ c

Does EOF from fputc always mean ferror returns true?

c

How to replace the recently abolished first parameter of macro "access_ok"?

c linux linux-device-driver

No compiler warning when there's a comma instead of a semicolon in a for loop

SIMD search for trough after the last peak

c vectorization simd avx2

Why not all the standard headers are preceded with std prefix?

c language-lawyer naming c11 c17

using binary search to find the first capital letter in a sorted string [closed]

Using va_args without passing num (like printf)

c variadic-functions

Stack cleanup not working (__stdcall MASM function)

c assembly x86 masm stdcall

Is it possible to make a union right aligned in C?

c unions memory-alignment