Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

How to interpret *( (char*)&a )

c endianness

Local variable still exists after function returns

c local-variables

left-hand operand of comma expression has no effect

c

bitwise operators in C

Array initialization using {0} fails except for first element in some compilers [duplicate]

c++ c

Why does C not define minimum size for an array?

c arrays undefined-behavior

Difference between null terminated char (\0) and `^@`

c++ c arrays string char

Converting an int array to an int value in c

c

bit field padding in C

c

Are these two methods for setting pointers equal to each other the same?

c pointers

Converting a decimal to a hexadecimal number

How does this value assignment work? [closed]

c

What is the priority with nested case, for and if loop?

What are the differences between nested if and &&?

c if-statement

How to find number of 1's in a binary number in O(1) time?

Is it possible to convert C/C++ source code to assembly?

c++ c assembly

C string function calls, pass by value or reference?

c string parameter-passing

Who writes header files

c header-files

C Pointers: *ptr vs &ptr vs ptr

c pointers

initialized vs uninitialized global const variable in c

c