Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <ctype.h>
- #include <string.h>
- int main() {
- char s1[1000];
- char s2[1000];
- scanf("%s", s1);
- scanf("%s", s2);
- if(strcmp(s1, s2) == 0) {
- printf("Isti se\n");
- }
- else {
- printf("Ne se isti!\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement