summaryrefslogtreecommitdiff
path: root/C_Programming_for_the_Absolute_Beginner/Chapter1.ipynb
diff options
context:
space:
mode:
authorThomas Stephen Lee2015-09-04 22:04:10 +0530
committerThomas Stephen Lee2015-09-04 22:04:10 +0530
commit41f1f72e9502f5c3de6ca16b303803dfcf1df594 (patch)
treef4bf726a3e3ce5d7d9ee3781cbacfe3116115a2c /C_Programming_for_the_Absolute_Beginner/Chapter1.ipynb
parent9c9779ba21b9bedde88e1e8216f9e3b4f8650b0e (diff)
downloadPython-Textbook-Companions-41f1f72e9502f5c3de6ca16b303803dfcf1df594.tar.gz
Python-Textbook-Companions-41f1f72e9502f5c3de6ca16b303803dfcf1df594.tar.bz2
Python-Textbook-Companions-41f1f72e9502f5c3de6ca16b303803dfcf1df594.zip
add/remove/update books
Diffstat (limited to 'C_Programming_for_the_Absolute_Beginner/Chapter1.ipynb')
-rwxr-xr-xC_Programming_for_the_Absolute_Beginner/Chapter1.ipynb117
1 files changed, 0 insertions, 117 deletions
diff --git a/C_Programming_for_the_Absolute_Beginner/Chapter1.ipynb b/C_Programming_for_the_Absolute_Beginner/Chapter1.ipynb
deleted file mode 100755
index 5c25ef5d..00000000
--- a/C_Programming_for_the_Absolute_Beginner/Chapter1.ipynb
+++ /dev/null
@@ -1,117 +0,0 @@
-{
- "metadata": {
- "name": "",
- "signature": "sha256:ed1073b28a905078eb23296522b8b59bf416e5275a011e43147248d1acd57f5a"
- },
- "nbformat": 3,
- "nbformat_minor": 0,
- "worksheets": [
- {
- "cells": [
- {
- "cell_type": "heading",
- "level": 1,
- "metadata": {},
- "source": [
- "Chapter 1 GETTING STARTED WITH C PROGRAMMING"
- ]
- },
- {
- "cell_type": "heading",
- "level": 2,
- "metadata": {},
- "source": [
- "Example 1.1, Page No. 6"
- ]
- },
- {
- "cell_type": "code",
- "collapsed": false,
- "input": [
- "print \"C you later\""
- ],
- "language": "python",
- "metadata": {},
- "outputs": [
- {
- "output_type": "stream",
- "stream": "stdout",
- "text": [
- "C you later\n"
- ]
- }
- ],
- "prompt_number": 1
- },
- {
- "cell_type": "heading",
- "level": 2,
- "metadata": {},
- "source": [
- "Example 1.2, Page No. 18"
- ]
- },
- {
- "cell_type": "code",
- "collapsed": false,
- "input": [
- "print \"Chapter 1. Getting Started with C programming\"\n",
- "print \"This is an example of format bug.\"\n",
- "print \"The format issue can be corrected by using\"\n",
- "print \"the \\n and \\\\ escape sequnece\""
- ],
- "language": "python",
- "metadata": {},
- "outputs": [
- {
- "output_type": "stream",
- "stream": "stdout",
- "text": [
- "Chapter 1. Getting Started with C programming\n",
- "This is an example of format bug.\n",
- "The format issue can be corrected by using\n",
- "the \n",
- " and \\ escape sequnece\n"
- ]
- }
- ],
- "prompt_number": 2
- },
- {
- "cell_type": "heading",
- "level": 2,
- "metadata": {},
- "source": [
- "Exmaple 1.3, Page No. 18"
- ]
- },
- {
- "cell_type": "code",
- "collapsed": false,
- "input": [
- "print \"Chapter 1. Getting Started with C programming\"\n",
- "print \"This is an example of format bug.\"\n",
- "print \"The format issue can be corrected by using\"\n",
- "print \"the \\\\n and \\\\\\\\ escape sequnece\""
- ],
- "language": "python",
- "metadata": {},
- "outputs": [
- {
- "output_type": "stream",
- "stream": "stdout",
- "text": [
- "Chapter 1. Getting Started with C programming\n",
- "This is an example of format bug.\n",
- "The format issue can be corrected by using\n",
- "the \\n and \\\\ escape sequnece\n"
- ]
- }
- ],
- "prompt_number": 4
- }
- ],
- "metadata": {}
- }
- ]
-} \ No newline at end of file