Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Why is calling snprintf() so slow?

c performance assembly gcc x86

If a mutex is already locked how can pthread_mutex_lock(pthread_mutex_t *mutex); block the thread and still return a value at the same time?

c++ c pthreads mutex

Where are local static variables inside a function stored - in the data segment, or on the stack?

c++ c

How to solve SIGSEGV, Segmentation fault in C?

c unix

valgrind says i have conditional jump or move depends on initialized value(s) [duplicate]

c valgrind

Proper end pointer with strtol() and "0x"? [duplicate]

c language-lawyer

Including third-party libraries in C applications

c organization

Seemingly pointless operations in a macro

c embedded autosar

OpenSSL 3 Diffie-Hellman Key Exchange C++

c++ c openssl diffie-hellman

MISRA Violation 12.5 when using && and || in if-statement

Visual Studio incorrectly marking inactive code blocks when using `#ifdef`

Is there a higher performing implementation of powf(10,floorf(log10f(x)))

"Proper" way to exit from a C/C++ program on erroneous input/behavior

c++ c exit

How to composite multiple PNG into a single PNG using GTK/Cairo

c animation graphics gtk cairo

How does free() 'know' that passed pointer is valid?

c pointers free

Suppressing "variable set but not used" warnings in the disabled case of a debug printf macro

c

Run C/C++ code in terminal instead of debug console in VS Code on macOS?

c++ c macos visual-studio-code

Can mmap's performance be improved for shared memory?

What is the type of `1 ? 0 : (int(*)[f()])0`?

Why is faster to do a branch than a lookup?