Latest Posts
Python Programming
Linear algebra is a fantastic field, and immensely useful. There are some great tools out there to help us out with it, a particularly widely known such tool being Matlab. But not all of us have Matlab. And if those of us witho...
Python Programming
What? A long time ago, in a galaxy an indeterminate distance from here, a race of hyper-dimensional mice built a supercomputer – a computer for whom to “calculate the trajectory of every single dust particle through...
PHP Programming
HTML form validation with PHP is another interesting topic that should arouse the attention of every programmer. HTML forms are often used to capture user details via a browser. There are many parts of a HTML form which are val...
C/C++ Programming
Have you ever though of coding a very simple calculator in C++? It is true that so far, we have learned so much in C++. We have learnt of functions, variables, functions and conditional statements. All that and much more is in...
C/C++ Programming
Switch statements are used as a way of carrying out deep conditional statements. Such statement ensure that a given variable is tested for equality in relation to given values. Each of these values is referred to as a case and ...
C/C++ Programming
C++ is an object oriented programming system and one its defining features is the ability to reuse code. Reusing a code is basically calling a certain function that has already been defined to pass an instruction. By calling a ...
C/C++ Programming
A structure refers to data elements that are grouped together using a single name. The data elements in a structure are called members and they can be composed of different data types and lengths. There is much similarity betwe...