#c
Read more stories on Hashnode
Articles with this tag
whenever you reassign a variable, the old value doesn't get erased by the new one; the variable simply switches to refer to the new value. The effect...
I came across this when doing the shell project.There was only two available to me 126(permission) and 127(command not found) So I started...
I got this formula from a data structure book in the bubble sort algorithm. (N-1) + (N-2) +...+ 2 + 1 is a sum of N-1 items. Now reorder the items so,...
Time complexity is a measure of the amount of time required for an algorithm to solve a problem as a function of the size of the input. It refers to...
size_t is the highest bit in your machine if your system is a 64 bit machine, size_t will be 64bits
'*' can be used for pointer declaration and also as an indirection operator/valueof operator. its meaning depends on the context used.Pointers only...