Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

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

Why should we use double pointer for adding node in front/back, but not in the middle?

Why is every value not initialized to 0? [duplicate]

Accessing an enum inside a struct in C

c

Allocating space of 1 char to an int pointer

c