Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Android NDK returns an error "undefined reference to 'rand'"

Perl unpack "S*" equivalent in C

c perl

Mask for clearing m bits after n LSBits

c++ c bit-manipulation bit

Why is accessing a null-terminated string giving 'garbage or undefined'?

Learn C The Hard Way exercise 14 Error (warning: array subscript has type ?char? [-Wchar-subscripts]

c

Proper use of getsockopt and setsockopt for SO_RCVTIMEO and SO_SNDTIMEO

c sockets timeout setsockopt

How can I use Apple's Core Audio C API to create a simple, real-time I/O stream on OS X?

c macos audio core-audio

C CIDR to address list

Need clarification on the definition of C tokens

c token

C program keeps crashing when calling perl function newSVpv()

c perl xs

Understanding parallel thread execution

c multithreading pthreads

STM32F4 - can I use delays in interrupt routines?

c arm stm32 stm32f4discovery

Compare preprocessor macros for equality

c macros c-preprocessor

Unexpected endptr with strtod()/strtold()

c gcc strtod

C++ reserved word as function pointer name in C struct

Should the pointer being passed to free() point to the start of the allocated space?

c pointers malloc free

When changing the value of a variable in C, is a new primitive created or is the current primitive mutated?

Getting wrong results with using AVX instructions and -O3 compiling option

c compiler-optimization avx

What is the purpose of Rust's function parameter syntax over C's?

c rust language-design

Finding all possible permutation of a string

c++ c arrays string algorithm