JavaScript Captcha Example

In this tutorial you will get JavaScript captcha example. Captcha is used to determine whether or not the user that is filling and submitting a web form is human. While developing web projects we often require to add captcha feature. So here I have shared the simplest way to create captcha in JavaScript. It will …

JavaScript Captcha Example Read More »

Dangling Pointer in C

Here you will learn about dangling reference and dangling pointer in C. In computer programming, memory is allocated for holding data object. After the work is done the memory is deallocated so that this memory can be used to store any other data object. Also Read: void pointer in C What is Dangling Pointer? While programming, …

Dangling Pointer in C Read More »

Android Session Management Using SharedPreferences

Here you will get an example of android session management using SharedPreferences. If you don’t know about SharedPreferences then read my previous tutorial: Android SharedPreferences Example In this tutorial you will learn how to manage login session of user. The whole process works like this: When user enters correct username and password then the login details …

Android Session Management Using SharedPreferences Read More »