
Search In
A tuple is a sequence of immutable Python objects. Tuples are in form of sequences as same as lists. The main differences between tuples and lists is that tuples cannot be changed like lists, also tuples use parentheses whereas lists use square brack
You can reverse a Singly Linked List in linear order of time by implementing the following iterative approach, there are other recursive approaches are also available. But for the sake of simplicity I am implementing the iterative approach only, as
From Android Kitkat 4.4 android gives inbuilt feature of Screen recoding with help of ADB.
Follow below steps to record screen:-
Open ADB location in Terminal.
Paste below command
adb shell screenrecord /sdcard/video.mp4
The default tim
C# delegates are similar to pointers to functions, in C or C++.
Delegates are used to perform tasks associated with a function while that function is invoked delegate will perform the task.
For example, consider a delegate:
public delegate int M
While perform manipulation with character or with string you need to do it with an char array for string or char variable for a single character.
This is the first way to manipulate the characters with char array.
char greeti
The C Preprocessor not the compiler part, but it executes as compilation occurs.
C Preprocessor is just a text substitution tool that tells the compiler to do required pre-processing before the actual compilation.
&n
A function in PHP which starts with a double underscore”__” are called magic functions in PHP. __autoload functions is used to add very large number of include statements automatically without the programmer.
For instance:
include “cla
My objective for posting this blog is to tell how do we convert shell scripting code to php. In some cases we need to use php code instead of executing shell script. Therefore I am writing the blog which may help someone to understand how do we conve
using wamp server ive created a table called tbl_users which has columns user fname, lname, email and password. ive populated all these fields already. ii am currently using note++ and need php code that will create a login form that will accept user
hi ,
im working on a function that will save the attachment file in Email via Gmail using gmail API code(C#).
but i keep getting an error that saying :
An unhandled exception of type 'Google.Apis.Auth.OAuth2.Responses.TokenResponseExcept
