diff options
Diffstat (limited to 'Let_us_C/chapter-14.ipynb')
-rw-r--r-- | Let_us_C/chapter-14.ipynb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Let_us_C/chapter-14.ipynb b/Let_us_C/chapter-14.ipynb index becf792e..8181a680 100644 --- a/Let_us_C/chapter-14.ipynb +++ b/Let_us_C/chapter-14.ipynb @@ -25,7 +25,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to print binary equivalent of integers using showbits( ) function'''\n",
"\n",
"#Function definition\n",
"def showbits ( n ):\n",
@@ -170,7 +169,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to shows one\u2019s complement operator in action.'''\n",
"\n",
"#Function definition\n",
"def showbits ( n ):\n",
@@ -351,7 +349,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate file encryption utility'''\n",
"\n",
"#Function definition\n",
"def encrypt( ):\n",
@@ -389,7 +386,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate the effect of right shift operator.'''\n",
"\n",
"#Function definition\n",
"def showbits ( n ):\n",
@@ -556,7 +552,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate the effect of left shift operator.'''\n",
"\n",
"#Function definition\n",
"def showbits ( n ):\n",
@@ -723,7 +718,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to decode the date field in directory entry using bitwise operators'''\n",
"\n",
"#Variable declaration\n",
"d = 9\n",
@@ -767,7 +761,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to test whether a bit in a number is ON or OFF'''\n",
"\n",
"#Variable declaration\n",
"i = 65\n",
@@ -812,8 +805,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "'''Program to demonstrate that a number XORed with another number\n",
- "twice gives the original number.'''\n",
"\n",
"#Variable declaration\n",
"b = 50\n",
|