Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<iostream>
- #include<fstream>
- #include<string>
- #include<iomanip>
- using namespace std;
- extern "C" {
- int function(string** Stroka, int n); // _summa
- }
- int main() {
- setlocale(LC_ALL, "Russian");
- cout << "Введите строку :";
- string Stroka;
- cin >> Stroka;
- int n = Stroka.length;
- cout << "Длина = " << n << endl;
- cout << "Строка = " << Stroka << endl;
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement