Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

What a C static variable in file scope means?

c static constants

Why is gcc not compiling this code consistently?

Error in macro expansion

c c-preprocessor

Storing data in the most significant bits of a pointer

c++ c pointers

Why does switch(0) not result in a warning while if(0) does?

c visual-studio-2012 gcc clang

How to use C11 standard in Code::Blocks

c codeblocks c11 gcc5.2

What does 2>&1 do to popen?

c popen

Passing macro arguments by macro

c gcc macros

POSIX message queue - Does it still exists after reboot?

c linux posix ipc message-queue

expected ';' at end of declaration list c when i have one already

c

C: Freeing Binary Search Tree

c binary-tree free

I can't compute the sqrt of a 0<= number <1

c sqrt

performing malloc in threads

sizeof anonymous nested struct

c gcc struct nested

Clion code formatting to align variables

c++ c clion

C - Why is a for loop getting stuck when using a uint64_t counter, whereas a while loop isn't?

c for-loop while-loop uint64

When setting terminal attributes via tcsetattr(fd.....), can fd be either stdout or stdin?

c linux terminal termios

Freeing a string (allocated in Ada) in a C function using free()

c string ada

Since characters from -128 to -1 are same as from +128 to +255, then what is the point of using unsigned char?

c char unsigned-char

Behavior of struct copying in C

c struct