Yurttas/PL/OOL/Cplusplus/F/07/02/00/01/s 11.cpp

From ZCubes Wiki
Jump to navigation Jump to search
 1/*
 2   Copyright(C) 2002
 3   All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
 4
 5   Permission to use, copy, modify, and distribute this
 6   software and its documentation for EDUCATIONAL purposes
 7   and without fee is hereby granted provided that this
 8   copyright notice appears in all copies.
 9
10   date   : June 1, 2002.
11   author : Salih Yurttas.
12
13   s_11.cpp
14*/
15
16
17#include <iostream>
18#include <string>
19
20using namespace std;
21
22int main(int argc, char* argv[]) {
23
24  string a("apricot");
25
26  cout << a << endl;
27
28  cout << endl;
29
30  int n = a.length();
31
32  for(int i=0; i<n; ++i)
33    cout << a.at(i) << endl;
34
35  cout << endl;
36
37  a = "plum";
38
39  cout << a << endl;
40
41  a.at(0) = 'b';
42
43  cout << a << endl;
44
45}