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.
ReadC program to skip characters with scanf. This program will show you how to skip specific characters while reading the user input in C.
ReadSwift program to convert string in unicode, UTF-16 and UTF-8.Learn how to use unicodeScalars, utf16 and utf8 properties of swift string.
ReadJavaScript program to get current url of the browser. This program will get the url from the window object and show it in an alert.
ReadJavaScript program to join elements of an array. This program will join the elements using any type of separator.
ReadLearn how to handle keyboard with react-native ScrollView.keyboardDismissMode and keyboardShouldPersistTaps are two properties used for keyboard handling.
ReadThis 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.
ReadLearn 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.
ReadLearn 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.
ReadJavascript 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