Because you can't.
Look, please don't write me an email asking me why C++ is what it is.
It just is. If you really want a rationale, buy Bjarne Stroustrup's excellent
book, "Design and Evolution of C++" (Addison-Wesley publishers). But if your
real goal is to write some code, don't waste too much time figuring out
why C++ has these rules, and instead just abide by its rules.
So here's the rule: if a points to an array of thingies that was
allocated via new T[n], then you must,
must, must delete it via delete[] a. Even if the
elements in the array are built-in types. Even if they're of type char or
int or void*. Even if you don't understand why.