What is memset function in C and how it works

This C programming post will show you what is memset function and how it can be used to set a block of memory programmatically in C. This post will show you how memset works with example.

Read

How to skip characters with scanf() in C

C program to skip characters with scanf. This program will show you how to skip specific characters while reading the user input in C.

Read

Swift string characters in unicode, UTF-16 and UTF-8 representation

Swift program to convert string in unicode, UTF-16 and UTF-8.Learn how to use unicodeScalars, utf16 and utf8 properties of swift string.

Read

JavaScript program to get the current URL of the browser

JavaScript program to get current url of the browser. This program will get the url from the window object and show it in an alert.

Read

How to join elements of an array in JavaScript

JavaScript program to join elements of an array. This program will join the elements using any type of separator.

Read

Handling keyboard with react-native ScrollView

Learn how to handle keyboard with react-native ScrollView.keyboardDismissMode and keyboardShouldPersistTaps are two properties used for keyboard handling.

Read

How to hide the keyboard on touch outside in react native

This post will show you how to hide the keyboard on touch outside of it in react native. We will create one simple react-native project to implement it.

Read

How to give default values for swift dictionary

Learn how to give default values for a swift dictionary. Swift dictionary returns an optional if we don't have any value for a key, unless we assign one default value.

Read

Search and filter in a Swift array of dictionaries for specific value

Learn how to search and filter in an array of dictionaries in swift with example. Search through the array items and create one new array of dictionaries by filtering out values based on specific properties.

Read

Javascript program to get all unique characters from a string

Javascript program to get all unique characters from a string. It will take one string as the input, remove all duplicate characters and print out the new string holding only unique characters.

Read