About 6,250,000 results
Open links in new tab
  1. C string manipulation programs/examples without using Library Functions

    String is the character array, usually we work with library functions to read and print the complete string but here you will find set of solved c programs/examples based on string manipulation. …

  2. c - Finding substring in string without using library function

    Feb 25, 2016 · My algorithm is to iterate through str until finding the null character. Then compare each character, if they are the same then iterate through both str and sub, otherwise set …

  3. C program to copy string without using strcpy () function

    Dec 15, 2024 · In C, the strcpy () function is commonly used for copying strings, but in this article, we will learn how to copy strings without using strcpy () function. The simplest method to copy …

  4. String operations (length, compare, copy, concatenate) without ...

    Aug 16, 2011 · But we can make our own functions to perform above task without including string,h. Here is the complete source code that has own functions find_length (like strlen) to …

  5. C Program to Copy String Without Using strcpy ()

    In this C programming example, you will learn to copy strings without using the strcpy () function.

  6. Write functions in C for the following operations without using

    Problem Type: String manipulation in C. This involves implementing fundamental string operations without relying on C's built-in string functions like strcmp, strcat, and strrev. i) Compare two …

  7. string - Substring in c without using functions - Stack Overflow

    Nov 24, 2014 · There are a number of ways to recreate strstr. The following is a quick implementation using the inch-worm method, where you simply use pointers to search for the …

  8. Copying string without library function || String || C programming

    In this, we are going to see a program to copy string without using strcpy () with help of C Programming Language.

  9. Print Substring of a Given String Without Using Any String Function

    Jan 15, 2025 · In C, a substring is a part of a string. Generally, we use string libary functions or loops to extract the substring from a string and then print it. But in this article, we will learn how …

  10. C Program for String Comparison without using Built in Function

    printf("\n Both Strings %s and %s are Equal ",str,str1); else. printf("\n Both Strings %s and %s are Not Equal ",str,str1); return 0; Both Strings Programming9 and Programming9 are Equal.

  11. Some results have been removed
Refresh