summaryrefslogtreecommitdiff
path: root/Let_us_C/chapter-6.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'Let_us_C/chapter-6.ipynb')
-rw-r--r--Let_us_C/chapter-6.ipynb11
1 files changed, 0 insertions, 11 deletions
diff --git a/Let_us_C/chapter-6.ipynb b/Let_us_C/chapter-6.ipynb
index 7cf66240..8234fda0 100644
--- a/Let_us_C/chapter-6.ipynb
+++ b/Let_us_C/chapter-6.ipynb
@@ -25,7 +25,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate the range of char'''\n",
"\n",
"#Variable declaration\n",
"ch = 291\n",
@@ -57,7 +56,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate the range of an unsigned char'''\n",
"\n",
"for ch in range(0,256):\n",
" print \"%d %c\" %(ch, ch%128 )\n",
@@ -354,7 +352,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to illustrate the scope and life of an automatic variable'''\n",
"\n",
"#Variable declaration\n",
"i = 1 #auto int\n",
@@ -401,7 +398,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to illustrate the scope and life of an automatic variable'''\n",
"\n",
"#Variable declaration\n",
"i = 1 #auto int\n",
@@ -450,7 +446,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program that puts to use all the data types'''\n",
"\n",
"#char\n",
"#c,d = raw_input(\"char: \").split()\n",
@@ -513,8 +508,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to understand the difference\n",
- "between the automatic and static storage classes.'''\n",
"\n",
"#function definition \n",
"def increment( ):\n",
@@ -553,8 +546,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to understand the difference\n",
- "between the automatic and static storage classes.'''\n",
"\n",
"#function definition \n",
"def increment(i = [1]): #static int \n",
@@ -592,7 +583,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to illustrate the advantages of using static storage class'''\n",
"\n",
"\n",
"#function definition\n",
@@ -627,7 +617,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to illustrate the extrnal storage class'''\n",
"\n",
"#Variable declaration \n",
"i = [0] # external variable\n",