Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Calling a function for a period of time

c++ c linux time timestamp

How do I get the same behavior for double precision operations in both 32-bit and 64-bit modes?

c gcc x86 floating-point double

how does Florian's Grisu2 algorithm work?

Enabling link time optimization via makefile

c++ c makefile

Data Validation in C

c validation

wmain vs main C runtime

c unicode winapi wmain

Casting a character array into an integer

c++ c type-conversion

What is an update stream in C?

c stream language-lawyer

Where do I set TCP_NODELAY in this C++ TCP Client?

c++ c sockets

linking succeeds with arm-none-eabi-g++ but not arm-none-eabi-gcc

c++ c gcc arm libm

Computing CRC16 with reflected / bit reversed input in C

c crc crc16

storing and printing string in void pointer

Does the size of data types in C depend on the OS?

c types

Why libpcap is better than sniffing with raw?

why use fflush after printf when printf can print by itself?

c flush stdio fflush

Clang-Tidy: Initializing non-local variable with non-const expression depending on uninitialized non-local variable, C pointer reference

c clang-tidy

Finding out where a function is defined

c mobile open-source embedded

Is it ok to replace a sqlite file while a program has an open db connection to it?

c sqlite

C variadic function: How to specify which type to give to va_arg

c variadic-functions