12 lines
189 B
C
12 lines
189 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
void main()
|
|
{
|
|
if( bcmp( "Hello there", "Hello world", 6 ) ) {
|
|
printf( "Not equal\n" );
|
|
} else {
|
|
printf( "Equal\n" );
|
|
}
|
|
}
|