Why does C differentiates in case of array index out of bound
C
#include int main() { int a[10]; a[3]=4; a[11]=3;//doe
C philosophy is always trust the programmer. And also not checking bounds allows the program to run faster.