Advertisement
Guest User

string.cpp

a guest
Nov 24th, 2020
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2. #include <string.h>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.     char n [16];
  8.    
  9.     cout << "Digite seu nome: ";
  10.     cin >> n;
  11.        
  12.     cout << "A quantidade de letras no seu nome é:" << strlen (n);
  13.  
  14.     return 0;    
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement