Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

What's the difference between if( !(s & i) ) and if( s&i == 0 )?

c++ c bitwise-operators

Why does strncpy() produce garbage when the dest is smaller than the src but large enough to fit the wanted substring of src?

c string strcpy strncpy

The const char* should it be freed in C?

c function char constants free

How to ensure that static library and application are compiled the same?

c gcc static-libraries

Search string in file (C)

c arrays pointers replace

Will disabling interrupts protect a non-volatile variable or can reordering happen?

Implementing time delay function in C

c delay

Linux system call: getaddrinfo return -2

c linux system-calls

Program run in child process doesn't loop

c exec fork pipe

Anonymous struct with ANSI C

c ansi-c anonymous-struct

Libunwind PC value not working with addr2line

c++ c dwarf addr2line libunwind

Segmentation fault on program with scanf

c

Creating hidden processes (window not visible)

c windows hide createprocess

Initializing array of pointers to char

c arrays pointers

pthread thread state

c++ c pthreads

Bringing another app's window to front on Mac in C

c macos

What optimizations should be left for compiler?

c optimization

How to play sound in C from scratch (Linux)

c linux