Understanding Data Types in Ruby Introduction: When you write programs, you use data types to classify data. Data types tell the computer a way to handle the...
Category - Strings
Work with String Methods in Ruby Introduction Ruby strings have several inbuilt ways that create it straightforward to switch and manipulate text, a standard...
C program to concatenate strings - C Programming - if the first string is "c " and second string is "program" then on concatenating these two strings.
String copying in c programming - C Programming - This program copy string using library function strcpy, to copy string without using strcpy.
C program to compare two strings - C Programming - This c program to compares two strings using strcmp, without strcmp and using pointers.
String length - C Programming - consider the string "c programming" it's length is 13. Null character is not counted when calculating string length.
JAVA Programming for Write a program to print all permutations of a given string - Mathematical Algorithms - A permutation also called “arrangement number"
JAVA Programming-Write a program to print all permutations of a given string - Searching and Sorting - A permutation, also called an “arrangement number” or...
C Programming-Print all possible strings that can be made by placing spaces - Searching and Sorting - The idea is to use recursion and create a buffer.