Android Intent from one activity to other May 31, 2017 An Android Intent is an abstract description of an operation to be performed. It can be used with startActivity to launch an Activity, broa...
C Program to swap two numbers using temporary variable May 28, 2017 The following program will swap two numbers by using third variable (Temporary Variable) #include <stdio.h> void main() { ...
C Program for ASCII value of a character May 28, 2017 A character variable holds ASCII value (an integer number between 0 and 127) rather than that character itself in C programming. That v...
Using Volley in Android application May 27, 2017 Volley Library Volley is an HTTP library developed by Google to ease networking tasks in Android Applications. Volley supersedes Jav...