15 lines
142 B
C
15 lines
142 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int main(){
|
||
|
char* a = "ab";
|
||
|
char* b = "ac";
|
||
|
|
||
|
if ( strcmp(a,b) ){
|
||
|
printf("hi");
|
||
|
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|