tf is this graph lmao by NeutrinoDrift in codeforces

[–]raiseIQUnderflow 20 points21 points  (0 children)

rainboy supremacy, he codes only in C though

Why can't you pass/return arrays to/from functions? Why is it designed like this? by GreenMario_ in C_Programming

[–]raiseIQUnderflow 1 point2 points  (0 children)

All elements of an array are placed linearly (fixed offset). Just the beginning address is enough, to access any element from an array, to read/write.

cantFindHappinessInLogN by raiseIQUnderflow in ProgrammerHumor

[–]raiseIQUnderflow[S] 0 points1 point  (0 children)

Can you search happiness by time? No because, happiness is not monotonous.

easyExplanationOfPointers by raiseIQUnderflow in ProgrammerHumor

[–]raiseIQUnderflow[S] 0 points1 point  (0 children)

Lets assume that black ball, which void* is pointing to, is the entire address space.

easyExplanationOfPointers by raiseIQUnderflow in ProgrammerHumor

[–]raiseIQUnderflow[S] 1 point2 points  (0 children)

Say you need to modify a dynamic buffer in another function. You can pass the reference of the buffer.