About 737,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. C String Functions - W3Schools

    To concatenate (combine) two strings, you can use the strcat() function: char str2 [] = "World!"; Note that the size of str1 should be large enough to store the result of the two strings …

  4. String Handling Functions (C Programming) - Codesansar

    Some useful string handling functions in C programming language are: strlen (): Finding length of the string. strcpy (): Copying string. strcmp (): Comparison of two strings. strcat (): …

  5. String handling functions in C - Learn C Online

    May 9, 2010 · In this article, you will understand different string handling functions in C. By the end of this article, you will learn how to write C programs to perform the following string …

  6. 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: "); …

  7. 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.

  8. String Functions in C (Full List With Examples)

    Apr 3, 2025 · If you're just getting started, it's essential to understand how the string handling functions in C work and when to use them. In this guide, you’ll learn about the most commonly …

  9. Strings in C with Examples: String Functions - ScholarHat

    Jan 25, 2025 · Strings in C are used to store and work with text, represented as arrays of characters ending with a null character (\0). This article simplifies strings in C by explaining …

  10. Strings in C - Sanfoundry

    A string is a group of characters that ends with a special character called \0. C stores strings in arrays of characters. We will also see how to use functions like strlen, strcpy, and strcmp to …

Refresh