summaryrefslogtreecommitdiff
path: root/The_C_Book/Chapter10.ipynb
blob: 89c66c6b56fc706579e386b83deda02e880582b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
 "metadata": {
  "name": "",
  "signature": "sha256:718ee87bab5f20ada0600af1b92a2d7b62afe1693e2a69cefc7d579af27447ac"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 10: Complete Programs in C"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 10.1, page no. 307"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "\n",
      "import sys\n",
      "\n",
      "print sys.argv"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "['-c', '-f', '/home/jovina/.ipython/profile_default/security/kernel-089d1845-2d63-42aa-b2c8-880183965d4f.json', 'jay_parikh/ipython_komal/', \"--IPKernelApp.parent_appname='ipython-notebook'\", '--profile-dir', '/home/jovina/.ipython/profile_default', '--parent=1']\n"
       ]
      }
     ],
     "prompt_number": 1
    }
   ],
   "metadata": {}
  }
 ]
}