code_snippets/c_projects/permutations_of_strings/main.c

15 lines
142 B
C
Raw Permalink Normal View History

2024-04-18 19:33:14 +00:00
#include <stdio.h>
#include <string.h>
int main(){
char* a = "ab";
char* b = "ac";
if ( strcmp(a,b) ){
printf("hi");
}
return 0;
}