new — C++ operator. malloc — C function.
1int* p1 = new int(10); // Constructor2delete p1;3 4int* p2 = (int*)malloc(sizeof(int)); // No constructor5free(p2);
new:
malloc: