I think you're making a big logical mistake. Undefined Behavior doesn't mean that a program will crash... it means that anything could happen.
If you're lucky (very very lucky) then you get a crash. What normally happens instead is that if you do anything that implies undefined behavior simply the program keeps running as if nothing happened, until one million executed instructions later where a perfectly legal piece of code does something very crazy. Normal reactions from programmers is then to blame the compiler, the OS version, the defective RAM and voodoo dolls hidden by hostile colleagues in the drawer.
If you are just a little unlucky instead the program will just behave exactly as you would expect, including providing the result you expect from it and closing fine without any problems at all. All this until you get to the big demo day, when instead it will crash badly in front of the audience just after you say "And now let's save our work...".
But why isn't undefined behavior checked in C++?
One of the main philosophical foundation of C++ is simply that programmers make no error. This means that when a programmer does indeed make an error there is no "runtime error angel" that will come to help, just "undefined behavior daemons" that instead will try to bite.
This has been done to avoid leaving enough space for another language between C++ and assembler, so it must be possible to write efficient code, and runtime error angels are too heavy to carry around. While for sure it's easy to write bloated and slow code in C++ it's also possible to write efficient code if you have a good grasp of how the language works and by keeping a constant focus to performance in mind.
When you see "this is undefined behavior" simply the meaning is that the compiler writers are free to ignore whatever is going to happen. Checking that those rules are not violated is a burden on the programmers that are using C++, not on the C++ compiler.
In my opinion the very fact that "undefined behavior" means that's unpredictable what happens and the fact that's very very easy to get undefined behavior by mistake means that C++ is a terrible language to learn by experimentation, because when you make a mistake the system won't tell you clearly so. It's also in my opinion a terrible language for a beginner (because it's natural for beginners to do more mistakes).
The only reasonable path to C++ is:
Learning it by studying and not by experimenting
C++ is a complex language with a long evolution history. In some parts it's illogical because of historical accidents. Even if you're smart you will never be able to guess the historical reasons for an apparently illogical choice. History must be studied.
You must think very carefully at every single statement you write
Like I said before you can't expect C++ to detect all your mistakes. Anything can happen when you make a mistake (including nothing!) and this means that debugging can be very very hard. The only viable option is to try to not introduce bugs. Writing code without serious thinking and hoping that tests and debug will find them is IMO bad for any language, but a true suicidal approach to C++.