1. Mastering Bitwise Operators in C: A Comprehensive Guide with Examples - Codzify 2. Ternary Operators in C Programming: A Beginners Guide (2023) 3. Switch Statements in C 2023: Complete Guide for Beginners 4. Learn Functions in C Programming - A Complete Tutorial for Beginners in 2023 5. Call by Value and Call by Reference in C Programming - A Complete Tutorial for Beginners in 2023 6. Storage Classes in C Programming: A Comprehensive Guide for 2023 7. Arrays in C Programming: A Comprehensive Guide for 2023 8. Basics of 2D Array in C Programming in 2023: Definition, Initialization, and Accessing Elements 9. Beginners Guide to Strings in C Programming with Codes and Examples 10. Strings Functions in C Language - strlen, strcpy,strcmp,strcat functions 11. A Comprehensive Guide to Structures in C Programming in 2023 12. Learn Unions in C Programming with Codes, Examples, and Explanations in 2023 13. Dynamic Memory Allocation in C: Understanding malloc, calloc, realloc, and free Functions 14. Introduction to C Programming 15. Hello world program in C 16. String functions in C - strncat, strcpy, strncpy, strchr, strrchr, strstr functions 17. Program for Fibonacci number in C - Codzify.com 18. What is palindrome number in C? 19. Write a C program to find a factorial of a given number 20. Write a C program to check whether a given number is prime or not 21. Write a C program to check whether a given number is an Armstrong number or not. 22. Write a C Program to transpose a matrix 23. C Programming Tutorial: Understanding Comments and Identifiers with Code Examples 24. Master String Handling Functions in C in 2023 - Codzify Topics

String functions in C - strncat, strcpy, strncpy, strchr, strrchr, strstr functions

Article by: Manish Methani

Last Updated: September 29, 2021 at 2:04pm IST

In previous tutorial ,we have seen strings functions like strlen, strcpy,strcmp,strcat in C Language. If you havent checked it, go for it here.

Lets begin with the today's topic of discussion on strcat, strncat, strcpy, strncpy, strchr, strrchr, strstr string functions. 

strcat

It concatenates two strings and returns the concatenated string.

#include <stdio.h>
#include <string.h>
int main()
{
     char s1[10] = "Hello";
     char s2[10] = "World";
     strcat(s1,s2);
     printf("Output string after concatenation: %s", s1);
     return 0;
}

Output:

Output string after concatenation: HelloWorld
 
strncat

It concatenates n characters of str2 to string str1. A terminator char (‘’) will always be appended at the end of the concatenated string.

#include <stdio.h>
#include <string.h>
int main()
{
     char s1[10] = "Hello";
     char s2[10] = "World";
     strncat(s1,s2, 3);
     printf("Concatenation using strncat: %s", s1);
     return 0;
}

Output:

Concatenation using strncat: HelloWor

strcpy

It copies the string str2 into string str1, including the end character (terminator char ‘’).

#include <stdio.h>
#include <string.h>
int main()
{
     char s1[30] = "string 1";
     char s2[30] = "string 2 : I’m gonna copied into s1";
     /* this function has copied s2 into s1*/
     strcpy(s1,s2);
     printf("String s1 is: %s", s1);
     return 0;
}

Output:

String s1 is: string 2: I’m gonna copied into s1

strncpy

It copies up to n characters from the string pointed to, by src to dest. Here we have used function memset() to clear the memory location.

#include <stdio.h>
#include <string.h>
int main()
{
   char src[40];
   char dest[12];
  
   memset(dest, "", sizeof(dest));
   strcpy(src, "It feels cool to write a code");
   strncpy(dest, src, 10);

   printf("Destination d string : %s
", dest);
   
   return(0);
}

Output

Destination d string : It feels c

strchr

This function is used to search the string from the given character

#include <stdio.h>
#include <string.h>
int main()
{
     char mystr[] = "I’m an example of function strchr";
     printf ("%s", strchr(mystr, 'f'));
     return 0;
}

Output:

f function strchr

strrchr

This function is used to search the string from the given character but in the reverse direction.

#include <stdio.h>
#include <string.h>
int main()
{
     char mystr[] = "I’m an example of function strchr";
     printf ("%s", strrchr(mystr, 'f'));
     return 0;
} 

Output:

function strchr

strstr

It is similar to strchr, except that it searches for string ‘search term’ instead of a single char.

#include <stdio.h>
#include <string.h>
int main()
{
  char s1[] = "codzify.com";
    char s2[] = "codzify";
    char* p;
  
    // Find first occurrence of s2 in s1
    p = strstr(s1, s2);
  
    // Prints the result
    if (p) {
        printf("First occurrence of string '%s' in '%s' is ]'%s'", s2, s1, p);
    } else
        printf("String not found
");
  
    return 0;
}

Output:

First occurrence of string 'codzify' in 'codzify.com' is 'codzify.com'

Learn to Build 5 Apps Without Coding using FlutterFlow

  • Lifetime access to all the 5 FlutterFlow Courses
  • Complete FlutterFlow training
  • All future course updates
  • Access via Codzify mobile app
  • 24h 42m of Learning Content
  • 5 FlutterFlow Courses at Codzify
  • Access to Dating App Course, Grocery App Course, Courses App Course, FlutterFlow AI Agents Course, Doctor Appointment Booking Supabase Course.
  • Clone Ready-Made Courses App instantly in FlutterFlow.
  • 30-Day 100% Money-Back Guarantee.

Learn More
Codzify Logo

Terms and Conditions    Cookie Policy   Refund Policy   Adsense Disclaimer

Contact: teamcodzify@gmail.com