12 lines
170 B
C
12 lines
170 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
char buffer[80] = "world";
|
|
|
|
void main()
|
|
{
|
|
if( strcoll( buffer, "Hello" ) < 0 ) {
|
|
printf( "Less than\n" );
|
|
}
|
|
}
|