C++

More general searching with Regex: Regex is more useful for looking at more general patterns eg rather than look for any particular characters eg .com we might want to know if any alphabetical character exists. Arrays (yet to be included) No ititialization. int[,] age = new int[2, 4] { { 1, 3, 5, 9 }, { 2, 4, 6, 8 } }; leave out indices: ................
................