Advertisement
Avdluna

Untitled

May 10th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <string.h>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     char palavra[85];
  10.             for(int i=0 ; i<85 ;i++){
  11.                 scanf("%c",palavra);
  12.             }
  13.                 for(int i=1;i<strlen(palavra);i++){
  14.                     printf("%c",palavra[i]);
  15.                 }
  16.                     printf("\n");
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement