| 31 | |
| 32 | |
| 33 | void func2() |
| 34 | { |
| 35 | char c; |
| 36 | char a[50] = "this is a string..."; |
| 37 | while((c=cin.get())!='\n'){ |
| 38 | cout.put(c); |
| 39 | cout.put('\n').put('t').put('h').put('i').put('s').put('\n'); |
| 40 | cout.write(a,12).put('\n'); |
| 41 | cout<<"look"<<"\t here!"<<endl; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | |
| 46 | /** |