Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Could someone explain this macro #define g_once_init_enter(location) which is in glib for me?

c glib

How to optimize cell-width measuring with SIMD (find the first column to have a non-zero byte in an 8x8 block of bytes)

c x86-64 simd sse avx

In C language, assuming expression is equal to 0, why !(expression) is also 0?

c gcc bit-manipulation

How to manage memory for chained array operations in C?

What is the best way to send linked list structure between processes via pipe in linux programming

c linux linked-list ipc pipe

How can i generate a binary code table of a huffman tree?

c algorithm tree huffman-code

Create and verify signature in code and from the command line using ECDSA

c openssl pem ecdsa der

Finding the second largest element in array without sorting

c arrays

Compiler optimization for loops [closed]

c++ c optimization

MPI Triangular Topology

Why I am getting the segmentation fault in following c program

c segmentation-fault

Difference between `scanf("%19[^\n]s",str);` and `scanf("%19[^\n]",str);`

c scanf

What does this weird C++ definition mean? [duplicate]

c function definition kr-c

Is it safe to memcpy regex_t?

c regex

How to get info on a process's virtual memory mappings in C (MacOS)

c macos macos-catalina

Explain the difference in these function pointer declarations