Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

What are the pros & cons of using an array of structures versus an array of pointers to a structure?

Can't open semaphore from another process

c winapi semaphore

Memcpy : Adding an int offset?

c++ c memcpy

C pointers: difference between while(*s++) { ;} and while(*s) { s++;}

c pointers

Strlen in Malloc

c pointers

Why some people don't check for NULL after calling malloc?

Passing pointer to array of struct

c arrays struct

How to check a completed gzip file?

c linux gzip

C: what does `int a[10]` mean

c arrays pointers

List undefined references from object file

c++ c gcc g++

Why isn't write(2) returning EINTR?

c linux

The C programming language book example: maybe out of date?

c

How to calculate nth n-digit palindrome efficiently?

c++ c algorithm palindrome

fgetc(stdin) in a loop is producing strange behaviour

c fgetc

real modulo operator in C/C++? [duplicate]

c++ c modulo

What's the difference among (const char *str) , (char const *str) and (char *const str)? [duplicate]

c pointers constants

C reverse binary [duplicate]

c binary binary-operators

How to kill a running thread? [duplicate]

c multithreading pthreads

sprintf usage with %.s

c printf

Should I declare system call functions in C?