Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

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

How to search a string in a char array in C? [closed]

c arrays string

C - Convert an uppercase letter to lowercase

c

What does while (*p2++ = *p1++); mean? [duplicate]

c

Compound if statement using ?: operator in C [duplicate]

How to pinpoint where a long function returns

c++ c return

Is it Bad Practice to use C++ only for the STL containers?

c++ c containers

type of int * (*) (int * , int * (*)())