PHP Array with Example

In this article, we learn how to can create and use a PHP array and how you can manipulate array elements using PHP.     PHP Array PHP arrays are used to store multiple values in a single variable. There are several ways to create and use arrays in PHP. Here are a few examples-In this article, we learn how to can create and use a PHP array and how you can manipulate array elements using PHP.     PHP Array PHP arrays are used to store multiple values in a single variable. There are several ways to create and use arrays in PHP. Here are a few examples- […]

Read More…

Posted in PHP

Array in C with Example

In this article, we learn how array in c programming works and how you can use declare, iterate and use array in C language.   Array in C An array in C programming is a collection of elements of the same data type that are stored in contiguous memory locations. The elements of an arrayIn this article, we learn how array in c programming works and how you can use declare, iterate and use array in C language.   Array in C An array in C programming is a collection of elements of the same data type that are stored in contiguous memory locations. The elements of an array […]

Read More…

JSON to string with example

In this article, I show you how to convert JSON to string in JavaScript and which method you can use to convert JSON objects to string.     JSON to string In JavaScript, you can convert a JSON object to a string using the JSON.stringify() method. This method takes the JSON object as an argumentIn this article, I show you how to convert JSON to string in JavaScript and which method you can use to convert JSON objects to string.     JSON to string In JavaScript, you can convert a JSON object to a string using the JSON.stringify() method. This method takes the JSON object as an argument […]

Read More…

What is the Arduino programming language

In this article, we discuss what is the Arduino programming language which programming language Arduino uses for development and why you have to use Arduino programming language, and how to get started with Arduino programming language.     What is the Arduino programming language? Arduino is an open-source electronics platform that uses a simple programmingIn this article, we discuss what is the Arduino programming language which programming language Arduino uses for development and why you have to use Arduino programming language, and how to get started with Arduino programming language.     What is the Arduino programming language? Arduino is an open-source electronics platform that uses a simple programming […]

Read More…

How to switch git branches

In this article, I show you how you can switch git branches while working on git. These are very often you have to do while working on git.     Suppose you have two branches one for development where as a developer you have been working and one is the main branch where everyone inIn this article, I show you how you can switch git branches while working on git. These are very often you have to do while working on git.     Suppose you have two branches one for development where as a developer you have been working and one is the main branch where everyone in […]

Read More…

Posted in git

Sorting a list in Python with Example

In this article, we learn how you can sort a python list and how sorting a list in python works with some examples. Also, understand the different sorting techniques used in python to sort the list items.   Sorting a list in Python To sort a list in python a sort() method is used. ItIn this article, we learn how you can sort a python list and how sorting a list in python works with some examples. Also, understand the different sorting techniques used in python to sort the list items.   Sorting a list in Python To sort a list in python a sort() method is used. It […]

Read More…