Search
 
SCRIPT & CODE EXAMPLE
 

C

strcasecmp in c

#include <strings.h>
int strcasecmp(const char *f1, const char *f2);

Return Values (CASE INSENSETIVE):
0 if both the strings are equal.
< 1 if f1 is less than f2.
> 1 if f1 is greater than f2.
Comment

strcasecmp c

Upon completion, strcasecmp() shall return an integer greater than, equal to, or less than 0, if the string pointed to by s1 is, ignoring case, greater than, equal to, or less than the string pointed to by s2, respectively.
Comment

strcasecmp C

int strcasecmp(const char *f1, const char *f2);
Comment

PREVIOUS NEXT
Code Example
::  
:: c convert char to int 
::  
::  
::  
::  
C ::  
::  
C ::  
C ::  
C ::  
:: c in to str 
C :: c bubble sort 
::  
C :: how to take comma separated integer input in c 
::  
::  
C ::  
::  
C ::  
::  
::  
::  
:: gandhi ashram saharanpur 
::  
::  
C ::  
:: how to write flash memory in stm32f030 
::  
::  
ADD CONTENT
Topic
Content
Source link
Name
6+4 =