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 memcmp() Function
Photo Credit to CodeToFun
đ Introduction
In C programming, the memcmp()
function is a standard library function defined in the <string.h> header.
It is used for comparing two blocks of memory, specifically designed for comparing character arrays or strings.
The memcmp()
function provides a way to compare consecutive bytes of memory and determine whether they are equal or which one is greater.
In this tutorial, we'll explore the usage and functionality of the memcmp()
function in C.
đĄ Syntax
The syntax for the memcmp()
function is as follows:
int memcmp(const void* ptr1, const void* ptr2, size_t num);
- ptr1: A pointer to the first block of memory.
- ptr2: A pointer to the second block of memory.
- num: The number of bytes to compare.
đ Example
Let's dive into an example to illustrate how the memcmp()
function works.
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "Hello, C!";
char str2[] = "Hello, D!";
// Compare the first 7 characters of str1 and str2
int result = memcmp(str1, str2, 7);
if (result == 0) {
printf("The first 7 characters are equal.\n");
} else if (result < 0) {
printf("The first differing character in str1 is less than str2.\n");
} else {
printf("The first differing character in str1 is greater than str2.\n");
}
return 0;
}
đģ Output
The first 7 characters are equal.
đ§ How the Program Works
In this example, the memcmp()
function is used to compare the first 7 characters of two strings, "Hello, C!" and "Hello, D!". The result is then used to determine the relationship between the two strings.
âŠī¸ Return Value
The function returns an integer representing the relationship between the two memory blocks:
- Returns 0 if the contents of both memory blocks are equal.
- Returns a negative value if the first differing byte in ptr1 is less than the corresponding byte in ptr2.
- Returns a positive value if the first differing byte in ptr1 is greater than the corresponding byte in ptr2.
đ Common Use Cases
The memcmp()
function is commonly used in scenarios where direct memory comparison is required, such as sorting strings or checking for equality between two strings with a specified number of characters.
đ Notes
- The
memcmp()
function treats the memory blocks as arrays of unsigned char, allowing for byte-wise comparison. - It is important to ensure that the specified number of bytes (num) does not exceed the size of the memory blocks to prevent undefined behavior.
đĸ Optimization
The memcmp()
function is typically optimized for performance by leveraging low-level memory comparison instructions provided by the hardware. No additional optimization is usually needed.
đ Conclusion
The memcmp()
function in C is a powerful tool for comparing blocks of memory, particularly useful when dealing with character arrays or strings. It provides a versatile mechanism for determining the relationship between two memory blocks.
Feel free to experiment with different strings and explore the behavior of the memcmp()
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 memcmp() Function) please comment here. I will help you immediately.