Advertisement
Guest User

new

a guest
Nov 24th, 2020
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <string.h>
  3.  
  4. using namespace std;
  5.  
  6. int main () {
  7.    
  8.     char x[31], y[31];
  9.    
  10.     strcpy (y, "kkkkkkk");
  11.     strcpy (x, "kkkkkkk");
  12.    
  13.     cout << "        ";
  14.     cout << strcmp (y, x);
  15.        
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement