12 lines
325 B
C
12 lines
325 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
void main()
|
|
{
|
|
printf( "%d\n", stricmp( "AbCDEF", "abcdef" ) );
|
|
printf( "%d\n", stricmp( "abcdef", "ABC" ) );
|
|
printf( "%d\n", stricmp( "abc", "ABCdef" ) );
|
|
printf( "%d\n", stricmp( "Abcdef", "mnopqr" ) );
|
|
printf( "%d\n", stricmp( "Mnopqr", "abcdef" ) );
|
|
}
|