summaryrefslogtreecommitdiff
path: root/Let_us_C/chapter-7.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'Let_us_C/chapter-7.ipynb')
-rw-r--r--Let_us_C/chapter-7.ipynb4
1 files changed, 0 insertions, 4 deletions
diff --git a/Let_us_C/chapter-7.ipynb b/Let_us_C/chapter-7.ipynb
index 9024266b..960282bf 100644
--- a/Let_us_C/chapter-7.ipynb
+++ b/Let_us_C/chapter-7.ipynb
@@ -25,7 +25,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to illustrate macros'''\n",
"\n",
"#Macro declaration\n",
"UPPER = 25\n",
@@ -81,7 +80,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to illustrate macros'''\n",
"\n",
"#Macro declaration\n",
"PI = 3.1415\n",
@@ -119,7 +117,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to illustrate macros with arguments'''\n",
"\n",
"#Macro declaration\n",
"def AREA(x): #define AREA(x) ( 3.14 * x * x )\n",
@@ -166,7 +163,6 @@
"cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to illustrate macros with arguments'''\n",
"\n",
"#Macro declaration\n",
"def ISDIGIT(y): #define ISDIGIT(y) ( y >= 48 && y <= 57 )\n",