Advertisement
Mihai_Preda

Untitled

Nov 15th, 2020
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. /**
  2.  * Copyright ITOIT Meditatii SRL
  3.  * Lesson challenge
  4.  */
  5. #include <cstdio>
  6. #include <cstring>
  7.  
  8. // Descrieti in limbaj natural ce face programul de mai jos.
  9.  
  10. int main()
  11. {
  12.     char c[50];
  13.     scanf("%s", c);
  14.     printf("%d %s", strlen(c), c);
  15.     return 0;
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement