Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Performance comparison: 64 bit and 32 bit multiplication [closed]

Converting unsigned to double to unsigned without loss of precision

Stringizing macro arguments in a multi-level macro call

How do I stop sem_open() failing with ENOSYS?

c linux ipc posix semaphore

What fallocate() does?

c linux unix filesystems

Way to compare strings in C preprocessor? (GCC) [duplicate]

c gcc c-preprocessor

Is the alignment requirement for incomplete `struct X` and `struct Y` the same?

How do I prevent any other process from writing to a file while reading from it in C?

c multithreading

Can a C pointer point to a value in an inner block and dereference the pointer after the block ends? [duplicate]

c

Efficiently returning multiple values in C

Infinity as sentinel in mergesort?

c

C write() function not working

c

Access frequency limitation for reading PMCCNTR_EL0?

c arm profiling perf

Where should standard library include be writen ? .c or .h file?

c header-files

How to return a string from a MACRO function in C?

c string macros c-preprocessor

Is there a generic way to printf a variable?

c macros printf

Is converting from unsigned char to signed char and vice versa in C89 well defined?

c undefined-behavior c89

Best way to read stdin that may include newline?

c