Advertisement
Josif_tepe

Untitled

Jun 11th, 2024
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <ctype.h>
  4. #include <math.h>
  5.  
  6.  
  7. int main(int argc, char * argv[]) {
  8.     char niza[2000];
  9.     scanf("%s", niza);
  10.  
  11.     char niza2[2000];
  12.     strcpy(niza2, niza);
  13.  
  14.     printf("%s\n", niza2);
  15.  
  16.    
  17. }
  18.  
  19.  
  20. /*
  21. 6
  22. 2 4 5 7 11 23
  23.  
  24. **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement