Rishi Rathor has Published 142 Articles

How to trust backward compatibility with HTML5

Rishi Rathor

Rishi Rathor

Updated on 30-Jul-2019 22:30:22

194 Views

HTML5 is designed, as much as possible, to be backward compatible with existing web browsers. New features build on existing features and allow you to provide fallback content for older browsers.It is suggested to detect support for individual HTML5 features using a few lines of JavaScript.The latest versions of Apple ... Read More

Why accessing an array out of bounds does not give any error in C++?

Rishi Rathor

Rishi Rathor

Updated on 30-Jul-2019 22:30:22

2K+ Views

This is due to the fact that C++ does not do bounds checking. Languages like Java and python have bounds checking so if you try to access an out of bounds element, they throw an error. C++ design principle was that it shouldn't be slower than the equivalent C code, ... Read More

Advertisements