Array manipulation

Is there an equivalents for pop, push, shift and unshift functions that we use in other languages to manipulate array in Arduino/Wiring?

In C, an array is a fixed chunk of contiguous memory.

In languages like Perl, python, Java, etc., arrays or lists are dynamic, and can grow or shrink as required.

You can make an array, and functions to treat it as a stack or queue, but you'll have to keep track of capacity limits and other concerns yourself.

I Understand. Thanks.