Josif_tepe

Untitled

Aug 29th, 2025
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <ctype.h>
  4. #include <string.h>
  5.  
  6. int main() {
  7.    
  8.     char niza[2000];
  9.     scanf("%s", niza);
  10.    
  11.     char niza2[2000];
  12.     scanf("%s", niza2);
  13.    
  14.    
  15.     if(strcmp(niza, niza2) == 0) {
  16.         printf("ISTI\n");
  17.     }
  18.     else {
  19.         printf("RAZLICNI\n");
  20.     }
  21.    
  22.     return 0;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment