Yurttas/PL/OOL/Cplusplus/F/02/04/021/01/00/vv 12.cpp
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 vv_12.cpp
14*/
15
16
17#include <vector>
18
19using namespace std;
20
21#include "f_specs.h"
22
23int main(int argc, char* argv[]) {
24
25 vector< vector<int> > vv = f_a();
26
27 f_b(vv);
28
29}