0

strcmpi() function in C

 3 years ago
source link: https://www.geeksforgeeks.org/strcmpi-function-in-c/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
Improve Article

strcmpi() function in C

  • Last Updated : 04 Oct, 2018

The strcmpi() function is a built-in function in C and is defined in the “string.h” header file. The strcmpi() function is same as that of the strcmp() function but the only difference is that strcmpi() function is not case sensitive and on the other hand strcmp() function is the case sensitive.

Syntax:

int strcmpi (const char * str1, const char * str2 );

Parameters:

  • str1: The first string.
  • str2: The second string.

Returns: This function returns 0 if the given two strings are same, a negative value if the length of str1 is less then the length of str2 and if the length of str1 is greater then str2 then this function returns a positive value.

Note: This is a non-standard function that works only with older versions of Microsoft C.

Below programs illustrate the strcmpi() function in C:

Program 1:

// C program to demonstrate
// example of strcmpi() function
#include <stdio.h>
#include <string.h>
int main( )
{
char str1[] = "geeks" ;
char str2[] = "geeks" ;
int j = strcmpi ( str1, str2 ) ;
printf ( "The function returns = %d",j ) ;
return 0;
}

Output:

The function returns = 0

Program 2:

// C program to demonstrate
// example of strcmpi() function
#include <stdio.h>
#include <string.h>
int main( )
{
char str1[ ] = "geeks" ;
char str2[ ] = "ForGeeks" ;
int i = strcmpi ( str1, str2 ) ;
printf ( "The function returns = %d", i ) ;
return 0;
}

Output:

The function returns = 1
Want to learn from the best curated videos and practice problems, check out the C Foundation Course for Basic to Advanced C.

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK