About 559,000 results
Open links in new tab
  1. C Library - <string.h> - GeeksforGeeks

    Mar 5, 2023 · string.h is a standard header file in the C language that contains functions for manipulating strings (arrays of characters). <string.h> header file contains some useful string …

  2. C String Functions - GeeksforGeeks

    Apr 16, 2025 · C language provides various built-in functions that can be used for various operations and manipulations on strings. These string functions make it easier to perform …

  3. C string (string.h) Library Reference - W3Schools

    C string Functions The <string.h> library has many functions that allow you to perform tasks on strings. A list of all string functions can be found in the table below:

  4. C Standard Library String Functions - Online Tutorials Library

    C Standard Library String Functions - Explore the C Standard Library's string functions, including detailed explanations and examples on how to manipulate strings effectively.

  5. String Library Functions in C with Examples

    Learn about string library functions in C with suitable examples to enhance your programming skills and understanding of C language.

  6. String Library functions – Explanation with Example - Codingeek

    Mar 5, 2017 · Here are some of the commonly used string library functions: strlen (): This function returns the length of the string. Example: strlen (name); This will return the length of the string …

  7. C string.h library functions | C Function | Fresh2Refresh

    All C inbuilt functions which are declared in string.h header file are given below. The source code for string.h header file is also given below for your reference.

  8. C – Strings and String functions with examples - BeginnersBook

    Sep 24, 2017 · In this guide, we learn how to declare strings, how to work with strings in C programming and how to use the pre-defined string handling functions. We will see how to …

  9. String Manipulations In C Programming Using Library Functions

    Functions gets() and puts() are two string functions to take string input from the user and display it respectively as mentioned in the previous chapter. char name[30]; printf("Enter name: "); …

  10. String library functions in C - SoftPrayog

    Jan 25, 2024 · However, some library functions have a “number” version. They work on initial n characters of the given string, where ‘n’ is an argument to the function. The important string …

Refresh