C Basic
C String Functions
- C String Functions
- C strcasecmp()
- C strcat()
- C strncat()
- C strcpy()
- C strncpy()
- C strlen()
- C strcmp()
- C strncmp()
- C stricmp()
- C strchr()
- C strrchr()
- C strstr()
- C strdup()
- C strlwr()
- C strupr()
- C strrev()
- C strset()
- C strnset()
- C strtok()
- C strerror()
- C strpbrk()
- C strcoll()
- C strspn()
- C strcspn()
- C strxfrm()
- C memchr()
- C memmove()
- C memcpy()
- C memcmp()
- C memset()
C strncmp() Function
Photo Credit to CodeToFun
đ Introduction
In C programming, comparing strings is a common operation, and there are standard functions tailored for different scenarios.
The strncmp()
function is one such function that allows you to compare a specified number of characters in two strings.
In this tutorial, we'll explore the usage and functionality of the strncmp()
function.
đĄ Syntax
The signature of the strncmp()
function is as follows:
int strncmp(const char *s1, const char *s2, size_t n);
This function takes two strings, s1 and s2, and an additional parameter n representing the maximum number of characters to compare.
đ Example
Let's delve into an example to illustrate how the strncmp()
function works.
#include <stdio.h>
#include <string.h>
int main() {
const char * str1 = "Hello, World!";
const char * str2 = "Hello, C!";
// Compare the first 7 characters of the strings
int result = strncmp(str1, str2, 7);
// Output the result
if (result == 0) {
printf("The first 7 characters are equal.\n");
} else {
printf("The first 7 characters are not equal.\n");
}
return 0;
}
đģ Output
The first 7 characters are equal.
đ§ How the Program Works
In this example, the strncmp()
function compares the first 7 characters of the strings "Hello, World!" and "Hello, C!" and prints the result.
âŠī¸ Return Value
The strncmp()
function returns an integer less than, equal to, or greater than zero if the first n characters of s1 are found, respectively, to be less than, to match, or be greater than the first n characters of s2.
đ Common Use Cases
The strncmp()
function is useful when you want to compare only a specific portion of two strings. It's commonly used in scenarios where you need to check prefixes or substrings with a limited length.
đ Notes
- Ensure that the value of n passed to
strncmp()
is within the valid length of the strings to avoid undefined behavior. - The comparison is case-sensitive.
đĸ Optimization
The strncmp()
function is optimized for comparing a specific number of characters in two strings. However, for performance-critical applications, consider profiling your code and exploring alternative approaches if needed.
đ Conclusion
The strncmp()
function in C is a versatile tool for comparing strings with a limited length. It provides control over the number of characters to compare, making it suitable for various string comparison scenarios.
Feel free to experiment with different strings and explore the behavior of the strncmp()
function in various scenarios. Happy coding!
đ¨âđģ Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (C strncmp() Function) please comment here. I will help you immediately.