Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Does a C struct hold its members in a contiguous block of memory? [duplicate]

c

What are the exact differences betwenn int **a and int a[][] as function parameters in C and C++?

fork() as an argument

c fork

Oddities in C char arrays

c arrays pointers

Problem with rand() in C [duplicate]

c gcc random

Converting between C enum and XML

c objective-c xml cocoa enums

Why does *(str+i) = *(str +j) not work here?

c arrays string pointers reverse

Why does this floating-point loop terminate at 1,000,000?

c floating-point

Using volatile long as an atomic

How does C get the array offset right for an array of strings?

c arrays string

Mechanism for returning a string from C main() program

c

Implementing a Unix shell in C: check if file is executable

c unix

Is the function strcpy always dangerous?

c security

Undefined Reference to a function

union for uint32_t and uint8_t[4] undefined behavior? [duplicate]

What's the point of making a new typedef for each variable?

c++ c typedef

C floating point precision [duplicate]

fopen not work with XCode

c text-files

Why does C not offer syntactically transparent references like C++ and Java do?

c language-lawyer

C/C++ optimize data structures, array of arrays or just array

c++ c arrays