Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

In a byte, how to swap the 4 higher bits with its 4 lower bits

c byte

Are two dimensional arrays in C required to make all elements contiguous?

c arrays

if(a,b,c,d) how does this work? [duplicate]

c if-statement

check if a lot of int is equal

ios objective-c c

C - Returning 2 values in a function and trying to use them

c

What is wrong with the following code dealing with pointers?

c pointers

Pointer to volatile data (*((volatile uint32_t *)0x40000000)) [duplicate]

c++ c arm

Memory waste? If main() should only return 0 or 1, why is main declared with int and not short int or even char?

c++ c memory types allocation

Why can I change a local const variable through pointer casts but not a global one in C?

c pointers constants

C comparison char and int

c

what is the good gvim guifont for C/C++ programming [closed]

c++ c vim

Iterating over same type struct members in C

c struct iteration

In game programming, what are the specific C++ or STL features that causes performance hogs? [closed]

c++ c stl

non-IDE C development environment

c linux command-line

Operator sizeof() in C

c types sizeof

If char c = 0x80, why does printf("%d\n", c << 1) output -256?

c integer-promotion

Converting Char array to Long in C

c memory

Is it compulsory to write int main(int argc, char *argv[]), can't use some other names instead of argc and *argv[]?

logical AND and OR in c

c

How many primitive steps in y=x++? [closed]

c++ c post-increment