Multiple choice technology programming languages which of the below statemen(s)is(are) true for malloc() & new functions? malloc is used to allocate store for integer arrays only new is used to allocate store for objects only new is used to allocate any kind of memory malloc is used to allocate any kind of memory new initializes the store after allocation malloc intializes the store after allocation Reveal answer Fill a bubble to check yourself C,D Correct answer Explanation Both malloc and new can allocate memory for any type, not just arrays or objects. In C++, new automatically initializes objects by invoking their constructors, whereas malloc simply allocates raw bytes of memory without performing initialization.