{"words":[["0","[MUSIC PLAYING]"],["463",""],["926",""],["1389",""],["1852",""],["2315",""],["2778",""],["3241",""],["3704",""],["4167",""],["4630",""],["5093",""],["5556",""],["6030","DOUG LLOYD: Pointers,"],["6350",""],["6670",""],["7000","here"],["7210","we"],["7360","are."],["7650",""],["8020",""],["8390","This"],["8540","is"],["8650","probably"],["8960",""],["9270","going"],["9400","to"],["9470","be"],["9580","the"],["9690","most"],["10150","difficult"],["10410",""],["10670","topic"],["11080","that"],["11160","we"],["11260","talk"],["11500","about"],["11780","in"],["11975","CS50."],["12170",""],["12560",""],["12840","And"],["13140",""],["13440","if"],["13580","you've"],["13770","read"],["14180","anything"],["14480","about"],["14700","pointers"],["15060","before"],["15330",""],["15600","you"],["15730","might"],["16030","be"],["16149","a"],["16210","little"],["16470","bit"],["16600","intimidating"],["16880",""],["17160","going"],["17440","into"],["17610","this"],["17790","video."],["18045",""],["18300",""],["18690",""],["19080","It's"],["19300","true"],["19550","the"],["19670","pointers"],["20120","do"],["20310","allow"],["20520","you"],["20650","the"],["20790","ability"],["21260","to"],["21550",""],["21840","perhaps"],["22125",""],["22410","screw"],["22650","up"],["22810","pretty"],["23070","badly"],["23500","when"],["23630","you're"],["23740","working"],["24080","with"],["24260","variables,"],["24730","and"],["24870","data,"],["25120","and"],["25240",""],["25580",""],["25690","causing"],["26000","your"],["26110","program"],["26420","to"],["26500","crash."],["26790",""],["27080",""],["27450","But"],["27630","they're"],["27750","actually"],["28100","really"],["28480","useful"],["28960","and"],["29060","they"],["29140","allow"],["29430","us"],["29560","a"],["29710","really"],["29970","great"],["30350","way"],["30490","to"],["30590","pass"],["30850",""],["31110","data"],["31430","back"],["31690","and"],["31820","forth"],["32170","between"],["32455",""],["32740","functions,"],["33040",""],["33340","that"],["33440","we're"],["33640","otherwise"],["34080","unable"],["34530","to"],["34680","do."],["35090",""],["35490","And"],["35720","so"],["36150","what"],["36230","we"],["36350","really"],["36580","want"],["36750","to"],["36830","do"],["37040","here"],["37310","is"],["37440","train"],["37750","you"],["37820","to"],["37890","have"],["38190","good"],["38450","pointer"],["38820","discipline,"],["39120",""],["39420","so"],["39480","that"],["39540","you"],["39650","can"],["39780","use"],["39980","pointers"],["40320","effectively"],["40690",""],["41060","to"],["41350","make"],["41480","your"],["41570","programs"],["41770",""],["42090","that"],["42290","much"],["42520","better."],["42940",""],["43395",""],["43850","As"],["44120","I"],["44200","said"],["44510","pointers"],["44820","give"],["44950","us"],["45050","a"],["45120","different"],["45480","way"],["45610","to"],["45710","pass"],["46180","data"],["46420","between"],["46790","functions."],["47155",""],["47520",""],["47870",""],["48220","Now"],["48660","if"],["48790","you"],["48880","recall"],["49170","from"],["49300","an"],["49410","earlier"],["49800","video,"],["50200","when"],["50270","we"],["50330","were"],["50450","talking"],["50720",""],["50990","about"],["51490","variable"],["51750",""],["52010","scope,"],["52350",""],["52690",""],["53170","I"],["53260","mentioned"],["53720","that"],["54050",""],["54340","all"],["54630","the"],["54730","data"],["55015",""],["55300","that"],["55500","we"],["55950","pass"],["56330","between"],["56585",""],["56840","functions"],["57190",""],["57540","in"],["57720","C"],["58005",""],["58290","is"],["58460","passed"],["58960","by"],["59140","value."],["59530",""],["59920",""],["60265",""],["60610","And"],["60880","I"],["60950","may"],["61070","not"],["61260","have"],["61340","used"],["61420","that"],["61630","term,"],["61990","what"],["62120","I"],["62190","meant"],["62530","there"],["62800",""],["63070","was"],["63500","that"],["63760","we"],["63910","are"],["63970","passing"],["64225",""],["64480","copies"],["64925",""],["65370","of"],["65645",""],["65920","data."],["66410",""],["66790",""],["67170","When"],["67260","we"],["67390","pass"],["67810",""],["68150","a"],["68440","variable"],["68910","to"],["69040","a"],["69090","function,"],["69415",""],["69740",""],["70040","we're"],["70330","not"],["70800","actually"],["71170",""],["71540","passing"],["71795",""],["72050","the"],["72110","variable"],["72540","to"],["72620","the"],["72700","function,"],["73080","right?"],["73210","We're"],["73310","passing"],["73700","a"],["73860","copy"],["74195",""],["74530",""],["74980","of"],["75200","that"],["75490","data"],["75745",""],["76000",""],["76315",""],["76630","to"],["76760","the"],["76840","function."],["77330",""],["77670","The"],["77770","function"],["78160","does"],["78420","what"],["78570","it"],["78670","will"],["79050",""],["79550","and"],["79810","it"],["79880","calculates"],["80290","some"],["80440","value,"],["80760","and"],["80920","maybe"],["81260","we"],["81380","use"],["81550","that"],["81740","value"],["82030","when"],["82150","it"],["82220","gives"],["82390","it"],["82460","back."],["82830",""],["83180","There"],["83310","was"],["83410","one"],["83680","exception"],["83940",""],["84200","to"],["84280","this"],["84490","rule"],["84860",""],["85230","of"],["85360","passing"],["85750","by"],["85930","value,"],["86315",""],["86700","and"],["86850","we'll"],["86940","come"],["87080","back"],["87250","to"],["87340","what"],["87450","that"],["87630","is"],["88040","a"],["88130","little"],["88340","later"],["88620","on"],["88870","in"],["89060","this"],["89250","video."],["89650",""],["90040",""],["90430",""],["90820",""],["91210","If"],["91340","we"],["91420","use"],["91620","pointers"],["92010",""],["92400","instead"],["92730","of"],["92830","using"],["93095",""],["93360",""],["93570","variables,"],["94020",""],["94470",""],["94880","or"],["95080","instead"],["95290","of"],["95350","using"],["95560","the"],["95630","variables"],["96020","themselves"],["96285",""],["96550","or"],["96690","copies"],["97100","of"],["97170","the"],["97230","variables,"],["97500",""],["97770",""],["98180","we"],["98250","can"],["98390","now"],["98540","pass"],["98883",""],["99226",""],["99570","the"],["99940",""],["100350","variables"],["100750","around"],["101210","between"],["101710","functions"],["101970",""],["102230","in"],["102380","a"],["102430","different"],["102860","way."],["103140",""],["103420",""],["103790","This"],["103940","means"],["104025","that"],["104110","if"],["104240","we"],["104330","make"],["104530","a"],["104620","change"],["105120","in"],["105250","one"],["105520","function,"],["105845",""],["106170",""],["106550","that"],["106780","change"],["107060","will"],["107230","actually"],["107700","take"],["107960","effect"],["108355",""],["108750","in"],["108940","a"],["108980","different"],["109270",""],["109560","function."],["110000","Again,"],["110180","this"],["110310","is"],["110380","something"],["110480","that"],["110560","we"],["110660","couldn't"],["110980","do"],["111160","previously,"],["111535",""],["111910",""],["112160","and"],["112350","if"],["112440","you've"],["112550","ever"],["112780","tried"],["113040","to"],["113120","swap"],["113610",""],["114100","the"],["114200","value"],["114485",""],["114770","of"],["114890","two"],["115140","variables"],["115530",""],["115920",""],["116260","in"],["116400","a"],["116450","function,"],["116770",""],["117090",""],["117310","you've"],["117490","noticed"],["117890","this"],["118040","problem"],["118290","sort"],["118440","of"],["118530","creeping"],["118920","up,"],["119100","right?"],["119270","If"],["119370","we"],["119440","want"],["119590","to"],["119640","swap"],["119995",""],["120350","X"],["120670","and"],["120820","Y,"],["121250",""],["121520","and"],["121670","we"],["121790","pass"],["122160","them"],["122300","to"],["122410","a"],["122470","function"],["122810","called"],["123060","swap,"],["123375",""],["123690",""],["124015",""],["124340","inside"],["124610",""],["124880","of"],["124980","the"],["125070","function"],["125540","swap"],["125875",""],["126210",""],["126465",""],["126720","the"],["126810","variables"],["127250","do"],["127450","exchange"],["127705",""],["127960","values."],["128320",""],["128680","One"],["128935",""],["129190","becomes"],["129539","two,"],["129820","two"],["130000","becomes"],["130350","one,"],["130605",""],["130860",""],["131215",""],["131570","but"],["131840","we"],["131960","don't"],["132180","actually"],["132600","change"],["132980","anything"],["133245",""],["133510","in"],["133660","the"],["133840","original"],["134310","function,"],["134670","in"],["134810","the"],["134990","caller."],["135270",""],["135550",""],["136020",""],["136455",""],["136890","Because"],["137155",""],["137420","we"],["137560","can't,"],["137860","we're"],["137955","only"],["138050","working"],["138290","with"],["138430","copies"],["138840","of"],["138950","them."],["139250",""],["139550","With"],["139810","pointers"],["140230","though,"],["140330","we"],["140450","can"],["140680","actually"],["140945",""],["141210","pass"],["141575",""],["141940","X"],["142410","and"],["142630","Y"],["142910",""],["143190","to"],["143450","a"],["143490","function."],["143800",""],["144110",""],["144435",""],["144760","That"],["144950","function"],["145270","can"],["145430","do"],["145620","something"],["146000","with"],["146200","them."],["146490",""],["146960","And"],["147010","those"],["147160","variables"],["147570","values"],["147980","can"],["148150","actually"],["148450",""],["148750","change."],["149250","So"],["149340","that's"],["149650","quite"],["150020","a"],["150090","change"],["150590","in"],["150700","our"],["150810","ability"],["151180","to"],["151290","work"],["151570",""],["151850","with"],["152140","data."],["152550",""],["152936",""],["153322",""],["153710","Before"],["153980","we"],["154110","dive"],["154365",""],["154620","into"],["154990","pointers,"],["155255",""],["155520","I"],["155580","think"],["155740","it's"],["155860","worth"],["156100","taking"],["156420","a"],["156470","few"],["156700","minutes"],["157020","to"],["157100","go"],["157240","back"],["157480","to"],["157590","basics"],["158040","here."],["158310",""],["158580","And"],["158740","have"],["158910","a"],["158960","look"],["159220","at"],["159270","how"],["159470","computer"],["159970","memory"],["160250",""],["160530","works"],["161000","because"],["161340","these"],["161550","two"],["161930","subjects"],["162300","are"],["162336","going"],["162373","to"],["162410","actually"],["162670","be"],["162790","pretty"],["163060","interrelated."],["163530",""],["164000",""],["164446",""],["164892",""],["165340","As"],["165510","you"],["165610","probably"],["165865",""],["166120","know,"],["166560",""],["166920","on"],["167130","your"],["167350",""],["167550","computer"],["167940","system"],["168210",""],["168480","you"],["168620","have"],["168895",""],["169170","a"],["169220","hard"],["169520","drive"],["169770","or"],["169850","perhaps"],["170160","a"],["170210","solid"],["170670","state"],["170980","drive,"],["171310","some"],["171520","sort"],["171770","of"],["172040","file"],["172325",""],["172610","storage"],["172955",""],["173300","location."],["173650",""],["174000",""],["174430","It's"],["174670","usually"],["175040","somewhere"],["175380","in"],["175440","the"],["175520","neighborhood"],["175860",""],["176200","of"],["176470","250"],["176890",""],["177310","gigabytes"],["177630",""],["177950","to"],["178030","maybe"],["178250","a"],["178290","couple"],["178580","of"],["178670","terabytes"],["179050","now."],["179430",""],["179810","And"],["179950","it's"],["180060","where"],["180290","all"],["180415","of"],["180540","your"],["180650","files"],["180915",""],["181180","ultimately"],["181475",""],["181770","live,"],["182270","even"],["182460","when"],["182540","your"],["182620","computer"],["183020","is"],["183170","shut"],["183320","off,"],["183700","you"],["183710","can"],["183840","turn"],["184020","it"],["184090","back"],["184330","on"],["184600",""],["184870","and"],["185020","you'll"],["185140","find"],["185410","your"],["185500","files"],["185830",""],["186160",""],["186390","are"],["186520","there"],["186780","again"],["187170","when"],["187320","you"],["187460","reboot"],["187770","your"],["187920","system."],["188400",""],["188795",""],["189190","But"],["189490","disk"],["189770","drives,"],["190150","like"],["190575",""],["191000","a"],["191060","hard"],["191300","disk"],["191370","drive,"],["191670","an"],["191740","HDD,"],["192095",""],["192450","or"],["192535","a"],["192620","solid"],["192990","state"],["193210","drive,"],["193540","an"],["193670","SSD,"],["194035",""],["194400",""],["194820","are"],["195130","just"],["195380","storage"],["195790","space."],["196050","We"],["196140","can't"],["196290","actually"],["196580","do"],["196860",""],["197140","anything"],["197570","with"],["197720","the"],["197810","data"],["198060","that"],["198310","is"],["198650","in"],["199130",""],["199445",""],["199760","hard"],["200050","disk,"],["200400","or"],["200550","in"],["200700","a"],["200760","solid"],["201060","state"],["201310","drive."],["201760",""],["202080","In"],["202220","order"],["202390","to"],["202480","actually"],["202880","change"],["203180",""],["203480","data"],["203770","or"],["203900","move"],["204160","it"],["204220","around,"],["204710",""],["204950","we"],["205150","have"],["205410","to"],["205520","move"],["205840","it"],["205980","to"],["206150","RAM,"],["206420",""],["206690",""],["207050","random"],["207540","access"],["207990","memory."],["208470",""],["208800","Now"],["209020","RAM,"],["209510","you"],["209620","have"],["209800","a"],["209860","lot"],["210070","less"],["210480","of"],["210575","in"],["210670","your"],["210780","computer."],["211170","You"],["211240","may"],["211410","have"],["211720","somewhere"],["212130","in"],["212180","the"],["212240","neighborhood"],["212710","of"],["212900","512"],["213243",""],["213586",""],["213930","megabytes"],["214185","if"],["214440","you"],["214490","have"],["214660","an"],["214780","older"],["215040","computer,"],["215320",""],["215600","to"],["216000","maybe"],["216475","two,"],["216950","four,"],["217425","eight,"],["217900","16,"],["218375",""],["218850","possibly"],["219230","even"],["219380","a"],["219470","little"],["219700","more,"],["219995",""],["220290",""],["220660",""],["221030","gigabytes"],["221290",""],["221550","of"],["221640","RAM."],["221820","So"],["221960","that's"],["222100","much"],["222450","smaller,"],["222840",""],["223230","but"],["223430","that's"],["223620","where"],["223790","all"],["224030","of"],["224120","the"],["224370","volatile"],["224625",""],["224880",""],["225280","data"],["225390",""],["225570",""],["225810","exists."],["226100",""],["226390","That's"],["226440","where"],["226540","we"],["226670","can"],["227010","change"],["227290",""],["227570","things."],["228000",""],["228270","But"],["228520","when"],["228670","we"],["228870","turn"],["229120","our"],["229200","computer"],["229590","off,"],["229860",""],["230130",""],["230410",""],["230690","all"],["230970","of"],["231010","the"],["231050","data"],["231220","in"],["231330","RAM"],["231650","is"],["231830","destroyed."],["232155",""],["232480",""],["232915",""],["233350","So"],["233360","that's"],["233550","why"],["233690","we"],["233800","need"],["233930","to"],["234000","have"],["234280",""],["234560","hard"],["234840","disk"],["235160","for"],["235350","the"],["235430","more"],["235600","permanent"],["235950",""],["236300","location"],["236800","of"],["236910","it,"],["237150","so"],["237270","that"],["237370","it"],["237520","exists-"],["237840",""],["238160",""],["238250",""],["238530","it"],["238623","would"],["238716","be"],["238810","really"],["239000","bad"],["239270","if"],["239383","every"],["239496","time"],["239610","we"],["239720","turned"],["239870","our"],["239960","computer"],["240280","off,"],["240600","every"],["240980","file"],["241250","in"],["241320","our"],["241400","system"],["241710","was"],["241900","obliterated."],["242215",""],["242530",""],["242920",""],["243310","So"],["243595",""],["243880","we"],["244220","work"],["244530",""],["244840","inside"],["245230","of"],["245320","RAM."],["245600","And"],["245660","every"],["245717","time"],["245775",""],["245890","we're"],["246000","talking"],["246370","about"],["246810","memory,"],["247145",""],["247480",""],["247790","pretty"],["247980","much,"],["248220","in"],["248420","CS50,"],["248620",""],["248915",""],["249210","we're"],["249420","talking"],["249830","about"],["250280",""],["250490","RAM,"],["250760",""],["251030",""],["251380","not"],["251820",""],["252030","hard"],["252300","disk."],["252700",""],["253176",""],["253652",""],["254128",""],["254604",""],["255080","So"],["255430","when"],["255600","we"],["255720","move"],["256050","things"],["256360","into"],["256550","memory,"],["256845",""],["257140","it"],["257290","takes"],["257529","up"],["257620","a"],["257680","certain"],["258079","amount"],["258310","of"],["258380","space."],["258820",""],["259260","All"],["259529","of"],["259574","the"],["259620","data"],["259829","types"],["260120","that"],["260200","we've"],["260300","been"],["260380","working"],["260620","with"],["260740","take"],["260940","up"],["261110","different"],["261480","amounts"],["261860","of"],["261930","space"],["262300",""],["262670",""],["262930","in"],["263140","RAM."],["263480","So"],["263680","every"],["263930","time"],["264170","you"],["264320","create"],["264630","an"],["264790","integer"],["265210","variable,"],["265540",""],["265870",""],["266100","four"],["266375",""],["266650","bytes"],["267060","of"],["267160","memory"],["267600","are"],["267710","set"],["267900","aside"],["268360","in"],["268600","RAM"],["268920",""],["269240",""],["269550","so"],["269710","you"],["269860","can"],["270020","work"],["270210","with"],["270300","that"],["270450","integer."],["270750","You"],["270910","can"],["271310",""],["271650","declare"],["272090","the"],["272210","integer,"],["272505",""],["272800",""],["273130","change"],["273550","it,"],["273900","assign"],["274080","it"],["274260","to"],["274350","a"],["274390","value"],["274730","10"],["275070","incremented"],["275520","by"],["275640","one,"],["276080","so"],["276230","on"],["276360","and"],["276490","so"],["276520","on."],["276700","All"],["276960","that"],["277100","needs"],["277250","to"],["277310","happen"],["277620","in"],["277730","RAM,"],["278220","and"],["278400","you"],["278470","get"],["278740","four"],["279050","bytes"],["279440","to"],["279540","work"],["279810","with"],["280290","for"],["280590","every"],["280920","integer"],["281340","that"],["281425","you"],["281510","create."],["281960",""],["282255",""],["282550","Every"],["282810","character"],["283240","you"],["283400","create"],["283745",""],["284090","gets"],["284510","one"],["284840","byte."],["285125",""],["285410","That's"],["285580","just"],["285730","how"],["285810","much"],["286000","space"],["286270","is"],["286380","needed"],["286680","to"],["286740","store"],["287080","a"],["287220","character."],["287360",""],["287640",""],["287900",""],["288160","Every"],["288420","float,"],["288760",""],["289100","a"],["289460","real"],["289750","number,"],["290070",""],["290390","gets"],["290630","four"],["290910","bytes"],["291310","unless"],["291540","it's"],["291650","a"],["291730","double"],["292100","precision"],["292445",""],["292790","floating"],["293140","point"],["293390","number,"],["293700",""],["294010","which"],["294200","allows"],["294440","you"],["294540","to"],["294670","have"],["294960","more"],["295270","precise"],["295535",""],["295800","or"],["295870","more"],["296180","digits"],["296510","after"],["296750","the"],["296800","decimal"],["297110","point"],["297380","without"],["297650","losing"],["297930","precision,"],["298225",""],["298520",""],["298910",""],["299300","which"],["299520","take"],["299710","up"],["300040","eight"],["300340","bytes"],["300700",""],["301060","of"],["301110","memory."],["301500",""],["301820","Long"],["302180","longs,"],["302660","really"],["303010","big"],["303300","integers,"],["303620",""],["303940","also"],["304320","take"],["304560","up"],["304780","eight"],["305010","bytes"],["305260","of"],["305380","memory."],["305700",""],["306043",""],["306386",""],["306730","How"],["306820","many"],["306950","bytes"],["307160","of"],["307210","memory"],["307430","do"],["307520","strings"],["307820",""],["308120","take"],["308370","up?"],["308520",""],["309000","Well"],["309140","let's"],["309290","put"],["309400","a"],["309470","pin"],["309595","in"],["309720","that"],["309870","question"],["310230","for"],["310340","now,"],["310600","but we'll"],["310710","come"],["310880","back"],["311090","to"],["311250","it."],["311440",""],["311827",""],["312214",""],["312601",""],["312990","So"],["313160","back"],["313370","to"],["313440","this"],["313550","idea"],["313850","of"],["313910","memory"],["314290","as"],["314410","a"],["314715","big"],["315020","array"],["315520",""],["315930","of"],["316240","byte-sized"],["316620",""],["317000","cells."],["317350","That's"],["317500","really"],["317720","all"],["317930","it"],["317990","is,"],["318170","it's"],["318330","just"],["318530","a"],["318580","huge"],["318920","array"],["319390",""],["319750","of"],["320015",""],["320280",""],["320630","cells,"],["321040","just"],["321110","like"],["321220","any"],["321420","other"],["321670","array"],["321930","that"],["321955","you're"],["321980","familiar"],["322330","with"],["322480","and"],["322600","see,"],["323090",""],["323370","except"],["323790","every"],["324170","element"],["324640","is"],["324790","one"],["325045",""],["325300","byte"],["325650","wide."],["326080",""],["326430","And"],["326690","just"],["326860","like"],["327010","an"],["327220","array,"],["327475",""],["327730",""],["328090","every"],["328390","element"],["328770","has"],["329120","an"],["329250","address."],["329640",""],["330030","Every"],["330310","element"],["330660","of"],["330730","an"],["331080","array"],["331160","has"],["331240","an"],["331390","index,"],["331655",""],["331920","and"],["332020","we"],["332120","can"],["332220","use"],["332380","that"],["332550","index"],["332970","to"],["333240",""],["333510","do"],["333720","so-called"],["334220","random"],["334525",""],["334830","access"],["335130",""],["335430","on"],["335580","the"],["335730","array."],["336060",""],["336370","We"],["336510","don't"],["336600","have"],["336660","to"],["336760","start"],["337080","at"],["337150","the"],["337220","beginning"],["337620","of"],["337735","the"],["337850","array,"],["338230",""],["338510","iterate"],["338940","through"],["339250","every"],["339490","single"],["339840","element"],["340210","thereof,"],["340505",""],["340800","to"],["340990","find"],["341260","what"],["341320","we're"],["341420","looking"],["341690","for."],["341860","We"],["341950","can"],["342070","just"],["342190","say,"],["342530","I"],["342640","want"],["342850","to"],["342890","get"],["343150","to"],["343250","the"],["343450","15th"],["343950","element"],["344330","or"],["344410","the"],["344570","100th"],["345030","element."],["345305",""],["345580",""],["345790","And"],["345960","you"],["346040","can"],["346180","just"],["346560","pass"],["346910","in"],["347070","that"],["347240","number"],["347680",""],["347940","and"],["348350","get"],["348570","the"],["348630","value"],["348860","you're"],["348980","looking"],["349250","for."],["349590",""],["349930","Similarly"],["350170",""],["350450",""],["350730","every"],["351100","location"],["351530","in"],["351580","memory"],["351890","has"],["352280","an"],["352390","address."],["352765",""],["353140",""],["353580",""],["354020",""],["354460","So"],["354790",""],["355150","your"],["355590","memory"],["355910","might"],["356140","look"],["356290","something"],["356510","like"],["356760","this."],["357040",""],["357320","Here's"],["357440","a"],["357490","very"],["357810","small"],["358175",""],["358540","chunk"],["358810","of"],["358880","memory,"],["359150","this"],["359310","is"],["359490","20"],["359755",""],["360020","bytes"],["360330",""],["360640",""],["360940","of"],["361080","memory."],["361420","The"],["361510","first"],["362000","20"],["362250","bytes"],["362520","because"],["362670","my"],["362890","addresses"],["363150",""],["363410","there"],["363580","at"],["363660","the"],["363720","bottom"],["364060","are"],["364160",""],["364260","0,"],["364460","1,"],["364700","2,"],["364960",""],["365220","3,"],["365530","and"],["365680","so"],["365870","on"],["366250","all"],["366660","the"],["366750","way"],["366920","up"],["367080","to"],["367210","19."],["367545",""],["367880",""],["368216",""],["368552",""],["368890","And"],["369200",""],["369510",""],["369935",""],["370360","when"],["370720","I"],["370880","declare"],["371145",""],["371410",""],["371440","variables"],["371880","and"],["371930","when"],["372040","I"],["372070","start"],["372250","to"],["372340","work"],["372540","with"],["372670","them,"],["372970",""],["373190","the"],["373290","system"],["373600","is"],["373680","going"],["373860","to"],["373970","set"],["374240","aside"],["374600","some"],["374700","space"],["375110","for"],["375210","me"],["375470","in"],["375670","this"],["375840","memory"],["376300",""],["376530","to"],["376700","work"],["377010","with"],["377200","my"],["377310","variables."],["377595","So"],["377880","I"],["377930","might"],["378190","say,"],["378560",""],["378860","char"],["379210","c"],["379490",""],["379770","equals"],["380270","capital"],["380720","H."],["380970","And"],["381040","what's"],["381180","going"],["381260","to"],["381310","happen?"],["381610","Well"],["381770","the"],["381930","system"],["382240","is"],["382310","going"],["382420","to"],["382480","set"],["382680","aside"],["382980","for"],["383090","me"],["383240","one"],["383580","byte."],["383880","In"],["383970","this"],["384110","case"],["384330","it"],["384440","chose"],["384930",""],["385210","byte"],["385530","number"],["385810","four,"],["386075",""],["386340","the"],["386440","byte"],["386610","at"],["386740","address"],["387170","four,"],["387620",""],["387870","and"],["388070","it's"],["388190","going"],["388280","to"],["388330","store"],["388780","the"],["388900","letter"],["389360",""],["389620","capital"],["390010","H"],["390160","in"],["390220","there"],["390360","for"],["390490","me."],["390700",""],["391005",""],["391310","If"],["391440","I"],["391520","then"],["391700","say"],["392050","int"],["392240","speed"],["392720","limit"],["393070","equals"],["393400","65,"],["393805",""],["394210","it's"],["394350","going"],["394460","to"],["394520","set"],["394820","aside"],["395085",""],["395350","four"],["395635",""],["395920","bytes"],["396360","of"],["396500","memory"],["396810","for"],["396980","me."],["397320","And"],["397342","it's"],["397365","going"],["397387","to"],["397410","treat"],["397700","those"],["397890","four"],["398090","bytes"],["398310","as"],["398400","a"],["398480","single"],["398820","unit"],["399180","because"],["399420","what"],["399550","we're"],["399640","working"],["399890","with"],["400010","is"],["400110","an"],["400210","integer"],["400590","here."],["400940",""],["401245","And"],["401550","it's"],["401710","going"],["401800","to"],["401850","store"],["402145",""],["402440","65"],["402800",""],["403160","in"],["403270","there."],["403560",""],["403955",""],["404350","Now"],["404715",""],["405080","already"],["405530","I'm"],["405630","kind"],["405890","of"],["405970","telling"],["406240","you"],["406340","a"],["406380","bit"],["406580","of"],["406660","a"],["406710","lie,"],["407000","right,"],["407320","because"],["407580","we"],["407740","know"],["408030",""],["408320","that"],["408520","computers"],["408940","work"],["409250","in"],["409600","binary."],["409875",""],["410150","They"],["410220","don't"],["410620","understand"],["410950",""],["411280","necessarily"],["411730","what"],["411890","a"],["412080","capital"],["412580","H"],["412870","is"],["413100","or"],["413180","what"],["413300","a"],["413370","65"],["413730",""],["414090","is,"],["414240","they"],["414330","only"],["414510","understand"],["415010",""],["415240","binary,"],["415590",""],["415940","zeros"],["416200",""],["416460","and"],["416590","ones."],["416850",""],["417110","And"],["417150","so"],["417370","actually"],["417700","what"],["417810","we're"],["417930","storing"],["418400","in"],["418480","there"],["418780",""],["419000","is"],["419210","not"],["419500","the"],["419580","letter"],["419890","H"],["420190",""],["420490","and"],["420660","the"],["420720","number"],["420960","65,"],["421295",""],["421630","but"],["421690","rather"],["421920","the"],["422030","binary"],["422305",""],["422580","representations"],["423015",""],["423450","thereof,"],["423760",""],["424070",""],["424300","which"],["424540","look"],["424800","a"],["424900","little"],["425130","something"],["425460","like"],["425680","this."],["425950",""],["426220",""],["426600",""],["426980","And"],["427020","in"],["427100","particular"],["427360",""],["427620","in"],["427700","the"],["427780","context"],["428075",""],["428370","of"],["428580","the"],["429050","integer"],["429510","variable,"],["429805",""],["430100",""],["430360","it's"],["430530","not"],["430700","going"],["430800","to"],["431070","just"],["431280","spit"],["431580","it"],["431690","into,"],["431970","it's"],["432140","not"],["432240","going"],["432320","to"],["432370","treat"],["432590","it"],["432655","as"],["432720","one"],["432995",""],["433270",""],["433555",""],["433840","four"],["434110","byte"],["434280","chunk"],["434470","necessarily,"],["434660",""],["434930","it's"],["435070","actually"],["435320","going"],["435350","to"],["435380","treat"],["435550","it"],["435720","as"],["435940","four"],["436260",""],["436580","one"],["436930","byte"],["437180","chunks,"],["437470",""],["437760","which"],["438010","might"],["438200","look"],["438320","something"],["438550","like"],["438710","this."],["439140",""],["439570","And"],["439670","even"],["439920","this"],["440310","isn't"],["440470","entirely"],["440795",""],["441120","true"],["441480","either,"],["441735",""],["441990",""],["442250",""],["442510","because"],["442900","of"],["442960","something"],["443250","called"],["443630","an"],["443740","endianness,"],["444200",""],["444450","which"],["444600","we're"],["444680","not"],["444840","going"],["444900","to"],["444960","get"],["445020","into"],["445290","now,"],["445570","but"],["445680","if"],["445790","you're"],["445940","curious"],["446320","about,"],["446530","you"],["446590","can"],["446720","read"],["446910","up"],["447040","on"],["447230","little"],["447650","and"],["447820","big"],["448160","endianness."],["448600",""],["449030","But"],["449270","for"],["449350","the"],["449440","sake"],["449730","of"],["450050","this"],["450300","argument,"],["450800","for"],["450880","the"],["450960","sake"],["451160","of"],["451240","this"],["451390","video,"],["451640","let's"],["451850","just"],["452020","assume"],["452450","that"],["452850","is,"],["453190","in"],["453290","fact,"],["453560","how"],["453700","the"],["453900","number"],["454100","65"],["454400",""],["454700","would"],["454860","be"],["454970","represented"],["455275",""],["455580","in"],["455630","memory"],["456000","on"],["456200","every"],["456570","system,"],["456970","although"],["457180","it's"],["457340","not"],["457530","entirely"],["457950","true."],["458280",""],["458565",""],["458850","But"],["459120",""],["459390","let's"],["459670","actually"],["459990","just"],["460320","get"],["460450","rid"],["460560","of"],["460630","all"],["460780","binary"],["461130","entirely,"],["461415",""],["461700","and"],["461830","just"],["462010","think"],["462160","about"],["462440","as"],["462720","H"],["463130","and"],["463280","65,"],["463545",""],["463810","it's"],["463900","a"],["463940","lot"],["464090","easier"],["464460","to"],["464530","think"],["464730","about"],["464950","it"],["465110",""],["465320","like"],["465520","that"],["465795",""],["466070","as"],["466280","a"],["466310","human"],["466540","being."],["466890",""],["467226",""],["467562",""],["467900","All"],["467960","right,"],["468190","so"],["468560","it"],["468630","also"],["468800","seems"],["469030","maybe"],["469350","a"],["469400","little"],["469610","random"],["470000","that"],["470190","I've-"],["470455",""],["470720","my"],["471130","system"],["471420","didn't"],["471670","give"],["471810","me"],["471980","bytes"],["472390","5,"],["472730","6,"],["473160","7,"],["473420","and"],["473630","8"],["473980",""],["474230","to"],["474460","store"],["474660","the"],["474800","integer."],["475130","There's"],["475290","a"],["475400","reason"],["475640","for"],["475740","that,"],["475960","too,"],["476190","which"],["476260","we"],["476380","won't"],["476500","get"],["476620","into"],["476920","right"],["477150","now,"],["477570",""],["477940",""],["478310","but"],["478360","suffice"],["478580","it"],["478645","to"],["478710","say"],["478810","that"],["478930","what"],["479050","the"],["479130","computer"],["479315","is"],["479500","doing"],["479740","here"],["480080","is"],["480230","probably"],["480690",""],["481150","a"],["481280","good"],["481650","move"],["481950","on"],["482090","its"],["482220","part."],["482515",""],["482810","To"],["482940","not"],["483140","give"],["483280","me"],["483560","memory"],["483960","that's"],["484120","necessarily"],["484445",""],["484770",""],["485070","back"],["485310","to"],["485400","back."],["485780",""],["486020","Although"],["486240","it's"],["486340","going"],["486420","to"],["486490","do"],["486640","it"],["486800","now"],["487150","if"],["487280","I"],["487610","want"],["487860","to"],["487930","get"],["488090","another"],["488530","string,"],["489000",""],["489496",""],["489992",""],["490490","called"],["490730","surname,"],["491010",""],["491290","and"],["491360","I"],["491380","want"],["491530","to"],["491580","put"],["491890","Lloyd"],["492380","in"],["492510","there."],["492810",""],["493080","I'm"],["493180","going"],["493290","to"],["493330","need"],["493640","to"],["494070","fit"],["494365",""],["494660",""],["494910","one"],["495380","character,"],["495780",""],["496180",""],["496650",""],["497120",""],["497230",""],["497640","each"],["497840","letter"],["498150","of"],["498255","that's"],["498360","going"],["498440","to"],["498480","require"],["498870","one"],["499180","character,"],["499460",""],["499740","one"],["499990","byte"],["500350","of"],["500440","memory."],["500880",""],["501330","So"],["501460","if"],["501520","I"],["501580","could"],["501750","put"],["501930","Lloyd"],["502430","into"],["502770","my"],["503130","array"],["503270","like"],["503460","this"],["503650","I'm"],["503730","pretty"],["503940","good"],["504090","to"],["504160","go,"],["504420","right?"],["504730",""],["505230",""],["505730",""],["506230","What's"],["506520",""],["506810","missing?"],["507140",""],["507470",""],["507936",""],["508402",""],["508870","Remember"],["508980","that"],["509070","every"],["509240","string"],["509600","we"],["509700","work"],["509870","with"],["509990","in"],["510070","C"],["510470","ends"],["510680","with"],["510870","backslash"],["511150",""],["511430","zero,"],["511840","and"],["511905","we"],["511970","can't"],["512230","omit"],["512460","that"],["512610","here,"],["512890","either."],["513110","We"],["513169","need"],["513289","to"],["513360","set"],["513570","aside"],["513860","one"],["514190","byte"],["514409","of"],["514490","memory"],["514760","to"],["514840","hold"],["515250","that"],["515559",""],["515860","so"],["516000","we"],["516090","know"],["516289","when"],["516470","our"],["516600","string"],["516895",""],["517190",""],["517390","has"],["517780","ended."],["518250",""],["518690",""],["519130","So"],["519270","again"],["519510","this"],["519659","arrangement"],["520080","of"],["520250",""],["520450","the"],["520559","way"],["520730","things"],["521049","appear"],["521340","in"],["521429","memory"],["521580","might"],["521740","be"],["521830","a"],["521880","little"],["522130","random,"],["522400","but"],["522570","it"],["522710","actually"],["522850","is"],["523039","how"],["523150","most"],["523380","systems"],["523880",""],["524130","are"],["524310","designed."],["524590",""],["524870","To"],["525060","line"],["525330","them"],["525460","up"],["525660","on"],["525820","multiples"],["526110",""],["526400","of"],["526610","four,"],["527023",""],["527436","for"],["527850","reasons"],["528120","again"],["528330","that"],["528410","we"],["528490","don't"],["528720",""],["529010","need"],["529150","to"],["529220","get"],["529350","into"],["529610","right"],["529810","now."],["530080","But"],["530180","this,"],["530370","so"],["530655","suffice"],["530726","it"],["530797","to"],["530868","say"],["530940","that"],["531050","after"],["531160","these"],["531370","three"],["531580","lines"],["531880","of"],["531970","code,"],["532420",""],["532740",""],["533060","this"],["533390","is"],["533500","what"],["533690","memory"],["534030","might"],["534390","look"],["534630","like."],["534810","If"],["534960",""],["535140",""],["535250",""],["535420","I"],["535480","need"],["535840","memory"],["536040","locations"],["536410","4,"],["536680","8,"],["536850","and"],["536930","12"],["537290","to"],["537370","hold"],["537660","my"],["537930",""],["538210",""],["538490","data,"],["538930","this"],["539160","is"],["539270","what"],["539480","my"],["539580","memory"],["539855",""],["540130","might"],["540620","look"],["540860","like."],["541100","And"],["541440",""],["541780","just"],["542100","be"],["542510","particularly"],["542980","pedantic"],["543400","here,"],["543740",""],["544160","when"],["544320","we're"],["544400","talking"],["544590","about"],["544770","memory"],["545110","addresses"],["545570","we"],["545690","usually"],["546020","do"],["546210","so"],["546650","using"],["547020","hexadecimal"],["547390",""],["547760","notations."],["548075",""],["548390","So"],["548510","why"],["548590","don't"],["548670","we"],["548820","convert"],["549220","all"],["549380","of"],["549490","these"],["549710","from"],["549850","decimal"],["550160",""],["550470",""],["550780","to"],["550910","hexadecimal"],["551215",""],["551520","notation"],["551775",""],["552030","just"],["552325",""],["552620","because"],["553020","that's"],["553440",""],["553750","generally"],["554060","how"],["554190","we"],["554300","refer"],["554610","to"],["554700","memory."],["555010","So"],["555100","instead"],["555190","of"],["555250","being"],["555460","0"],["555830","through"],["556000","19,"],["556420","what"],["556840","we"],["557070","have"],["557270","is"],["557520","zero"],["557880","x"],["558140",""],["558240","zero"],["558580","through"],["558840","zero"],["559180","x1"],["559455",""],["559730","three."],["560120",""],["560340","Those"],["560510","are"],["560560","the"],["560830","20"],["561300","bytes"],["561590","of"],["561680","memory"],["561960","that"],["562070","we"],["562160","have"],["562550","or"],["562660","we're"],["562770","looking"],["563080","at"],["563280","in"],["563420","this"],["563600","image"],["563790","right"],["563980","here."],["564250",""],["564680",""],["565110",""],["565540","So"],["565880",""],["566250","all"],["566460","of"],["566545","that"],["566630","being"],["566810","said,"],["567150","let's"],["567290",""],["567530","step"],["567800","away"],["568010","from"],["568310",""],["568400","memory"],["568750","for"],["568840","a"],["568890","second"],["569310","and"],["569410","back"],["569510","to"],["569610","pointers."],["570110",""],["570490","Here"],["570770","is"],["570860","the"],["570930","most"],["571230","important"],["571650","thing"],["571800","to"],["571890","remember"],["572155",""],["572420","as"],["572550","we"],["572620","start"],["572870","working"],["573120","with"],["573270","pointers."],["573530",""],["573790",""],["574070","A"],["574160","pointer"],["574520","is"],["574620","nothing"],["574920","more"],["575120","than"],["575390","an"],["575470","address."],["575930",""],["576355",""],["576780","I'll"],["576920","say"],["577030","it"],["577090","again"],["577260","because"],["577390","it's"],["577550","that"],["577720","important,"],["577975",""],["578230","a"],["578350","pointer"],["578765",""],["579180","is"],["579370","nothing"],["579730",""],["580090","more"],["580355",""],["580620",""],["580920","than"],["581220","an"],["581450","address."],["581790",""],["582130",""],["582430",""],["582730","Pointers"],["583030","are"],["583120","addresses"],["583560","to"],["583670","locations"],["584070",""],["584470","in"],["584610","memory"],["585100",""],["585310","where"],["585640","variables"],["586060",""],["586480","live."],["586810",""],["587285",""],["587760","Knowing"],["588080","that"],["588450","it"],["588600","becomes"],["588960","hopefully"],["589290","a"],["589360","little"],["589560","bit"],["589690","easier"],["590040","to"],["590150","work"],["590350","with"],["590480","them."],["590690",""],["591165",""],["591640",""],["592115",""],["592590","Another"],["592710","thing"],["592860","I"],["592880","like"],["593030","to"],["593160","do"],["593610","is"],["593980","to"],["594170","have"],["594390","sort"],["594550","of"],["594700","diagrams"],["595080",""],["595460","visually"],["595805",""],["596150","representing"],["596440",""],["596730","what's"],["596970","happening"],["597440","with"],["597530","various"],["597880","lines"],["598080","of"],["598160","code."],["598510","And"],["598605","we'll"],["598700","do"],["598830","this"],["598990","a"],["599030","couple"],["599290","of"],["599360","times"],["599820","in"],["600010","pointers,"],["600335",""],["600660","and"],["600850","when"],["600890","we"],["600930","talk"],["601120","about"],["601290","dynamic"],["601700","memory"],["601970","allocation"],["602345",""],["602720",""],["603180","as"],["603530","well."],["603840","Because"],["603960","I"],["604000","think"],["604170","that"],["604290","these"],["604440","diagrams"],["604765","can"],["604927","be"],["605090","particularly"],["605520","helpful."],["606020","So"],["606120","if"],["606220","I"],["606320","say"],["606440","for"],["606580","example,"],["607020","int"],["607290","k"],["607550","in"],["607670","my"],["607800","code,"],["608090","what is"],["608320","happening?"],["608580",""],["608840",""],["609190",""],["609540","Well"],["609780","what's"],["610000","basically"],["610390","happening"],["610810","is"],["610920","I'm"],["611010","getting"],["611500","memory"],["611930","set"],["612160","aside"],["612520","for"],["612680","me,"],["612900",""],["613220","but"],["613420","I"],["613463","don't"],["613506","even"],["613550","like"],["613780","to"],["613840","think"],["614000","about"],["614240","it"],["614340","like"],["614400","that,"],["614630","I"],["614690","like"],["614773","to"],["614856","think"],["614940","about"],["615160","it"],["615216","like"],["615273","a"],["615330","box."],["615665",""],["616000",""],["616300","I"],["616440","have"],["616600","a"],["616650","box"],["617040",""],["617430",""],["617690","and"],["617810","it's"],["617930","colored"],["618300","green"],["618650",""],["619000","because"],["619340",""],["619680",""],["619990","I"],["620090","can"],["620250","put"],["620460","integers"],["620870","in"],["621000","green"],["621290","boxes."],["621750","If"],["621860","it"],["621940","was"],["622100","a character"],["622520","I"],["622585","might"],["622650","have"],["622780","a"],["622830","blue"],["623000","box."],["623320","But"],["623570",""],["623830","I"],["623990","always"],["624220","say,"],["624640",""],["624900","if"],["625100","I'm"],["625390",""],["625680","creating"],["626010","a"],["626050","box"],["626380","that"],["626410","can"],["626500","hold"],["626760","integers"],["627025",""],["627290","that"],["627480","box"],["627750","is"],["627880","colored"],["628250","green."],["628670",""],["628950","And"],["629120","I"],["629210","take"],["629640","a"],["629750","permanent"],["630090","marker"],["630360","and"],["630450","I"],["630470","write"],["630790","k"],["631065",""],["631340",""],["631720","on"],["631890","the"],["631950","side"],["632210","of"],["632290","it."],["632610",""],["633020","So"],["633120","I"],["633170","have"],["633220","a"],["633387","box"],["633555",""],["633890","called"],["634200","k,"],["634700",""],["635030","into"],["635330","which"],["635570","I"],["635650","can"],["635810","put"],["636060","integers."],["636345",""],["636630",""],["637110",""],["637590","So"],["637640","when"],["637710","I"],["637770","say"],["638110","int"],["638320","k,"],["638585",""],["638850","that's"],["639110","what"],["639200","happens"],["639540",""],["639880","in"],["639990","my"],["640090","head."],["640370",""],["640720",""],["641070","If"],["641120","I"],["641170","say"],["641330","k"],["641690","equals"],["642000","five,"],["642255",""],["642510","what"],["642710","am"],["642790","I"],["642850","doing?"],["643140","Well,"],["643195","I'm"],["643250","putting"],["643440","five"],["643870","in"],["643970","the"],["644040","box,"],["644530","right."],["644860",""],["645110","This"],["645240","is"],["645350","pretty"],["645550","straightforward,"],["645865",""],["646180","if"],["646230","I"],["646280","say"],["646380","int"],["646545","k,"],["646710",""],["647040",""],["647340","create"],["647520","a"],["647560","box"],["647830","called"],["648020","k."],["648345",""],["648670","If"],["648720","I"],["648770","say"],["648920","k"],["649140","equals"],["649380","5,"],["649690",""],["650000","put"],["650220","five"],["650510","into"],["650710","the"],["650760","box."],["651190",""],["651615",""],["652040","Hopefully"],["652300","that's"],["652780","not"],["653160","too"],["653370","much"],["653530","of"],["653620","a"],["653650","leap."],["653960",""],["654360",""],["654760","Here's"],["654895","where"],["655030","things"],["655210","go"],["655310","a"],["655360","little"],["655560","interesting though."],["655990","If"],["656080","I"],["656160","say"],["656480","int*pk,"],["656750",""],["657095",""],["657440",""],["657800",""],["658160",""],["658605",""],["659050","well"],["659355",""],["659660","even"],["660090","if"],["660350","I"],["660410","don't"],["660670","know"],["660880","what"],["661120","this"],["661300","necessarily"],["661590",""],["661880","means,"],["662235",""],["662590","it's"],["662820","clearly"],["663210","got"],["663370","something"],["663685",""],["664000","to"],["664110","do"],["664360","with"],["664530","an"],["664620","integer."],["665090",""],["665443",""],["665796",""],["666150","So"],["666500","I'm"],["666570","going"],["666670","to"],["666760","color"],["667050","this"],["667260","box"],["667710","green-ish,"],["668140",""],["668600","I"],["668660","know"],["668810","it's"],["668890","got"],["669000","something"],["669200","to"],["669240","do"],["669340","with"],["669420","an"],["669500","integer,"],["669855",""],["670210","but"],["670400",""],["670750","it's"],["670930","not"],["671130","an"],["671210","integer"],["671530","itself,"],["671890","because"],["672020","it's"],["672140","an"],["672320","int"],["672720","star."],["673060",""],["673400","There's"],["673570","something"],["673910","slightly"],["674350","different"],["674610","about"],["674805",""],["675000","it."],["675390","So"],["675500","an"],["675695","integer's"],["675890","involved,"],["676180",""],["676470",""],["676750","but"],["677010","otherwise"],["677420","it's"],["677620","not"],["677970","too"],["678250","different"],["678690","from"],["678820","what"],["678920","we"],["678990","were"],["679110","talking"],["679490","about."],["679830","It's"],["680200",""],["680570","a"],["680620","box,"],["680935",""],["681250","its"],["681400",""],["681620","got"],["681770","a"],["681820","label,"],["682105","it's"],["682390","wearing"],["682500","a"],["682610","label"],["682920","pk,"],["683335",""],["683750",""],["684240","and"],["684420","it's"],["684530","capable"],["684850","of"],["684910","holding"],["685265",""],["685620",""],["685840","int"],["686070","stars,"],["686465",""],["686860","whatever"],["686960","those"],["687150","are."],["687280","They"],["687430","have"],["687555","something"],["687680","to"],["687760","do"],["687840","with"],["687930","integers,"],["688250","clearly."],["688610",""],["688987",""],["689364",""],["689741",""],["690120","Here's"],["690380","the"],["690470","last"],["690790","line"],["690925","though."],["691060","If"],["691170","I"],["691250","say"],["691660",""],["691940",""],["692220","pk=&k,"],["692485",""],["692750",""],["693180",""],["693510",""],["693840",""],["694290",""],["694750",""],["695210","whoa,"],["695540",""],["695840",""],["696140","what"],["696300","just"],["696460","happened,"],["696750","right?"],["697015",""],["697280",""],["697650","So"],["697770","this"],["697910","random"],["698195",""],["698480","number,"],["698960","seemingly"],["699280","random"],["699470","number,"],["699690","gets"],["700040","thrown"],["700340","into"],["700500","the"],["700560","box"],["700860","there."],["701120",""],["701470",""],["701820","All"],["702030","that"],["702200","is,"],["702510","is"],["702820","pk"],["703255",""],["703690","gets"],["703950","the"],["704160","address"],["704590","of"],["704690","k."],["704930","So"],["705050","I'm"],["705150","sticking"],["705525",""],["705900",""],["706140","where"],["706455",""],["706770","k"],["707180","lives"],["707610","in"],["707880","memory,"],["708160",""],["708440",""],["708880",""],["709320",""],["709550","its"],["709780","address,"],["710220",""],["710660","the"],["710790","address"],["711170","of"],["711280","its"],["711460","bytes."],["711775",""],["712090",""],["712520",""],["712950","All"],["713120","I'm"],["713220","doing"],["713410","is"],["713500","I'm"],["713580","saying"],["713850","that"],["714260","value"],["714710","is"],["714860","what"],["715020","I'm"],["715110","going"],["715200","to"],["715270","put"],["715680","inside"],["716150","of"],["716240","my"],["716380","box"],["716730",""],["717080",""],["717350","called"],["717820","pk."],["718080",""],["718530",""],["718980",""],["719430","And"],["719880","because"],["720170","these"],["720300","things"],["720500","are"],["720600","pointers,"],["720860",""],["721120","and"],["721190","because"],["721455",""],["721720","looking"],["722080","at"],["722150","a"],["722200","string"],["722470","like"],["722670","zero"],["723030","x"],["723320","eight"],["723590","zero"],["723890","c"],["724122","seven"],["724355","four"],["724820","eight"],["724955","two"],["725090",""],["725210","zero"],["725640","is"],["725740","probably"],["726090","not"],["726480","very"],["726740","meaningful."],["727105",""],["727470",""],["727790","When"],["727990","we"],["728100","generally"],["728355",""],["728610","visualize"],["728960",""],["729310","pointers,"],["729550",""],["729680","we"],["729810","actually"],["730080","do"],["730270","so"],["730500","as"],["730910",""],["731300","pointers."],["731625",""],["731950",""],["732390","Pk"],["732880",""],["733370","gives"],["733620","us"],["733880","the"],["734150","information"],["734405",""],["734660","we"],["734750","need"],["735030","to"],["735140","find"],["735455",""],["735770","k"],["736150","in"],["736300","memory."],["736720",""],["737000","So"],["737110","basically"],["737530","pk"],["737970","has"],["738160","an"],["738320","arrow"],["738650","in"],["738770","it."],["739120","And"],["739290","if"],["739400","we"],["739590","walk"],["739965",""],["740340","the"],["740440","length"],["740750","of"],["740840","that"],["741030","arrow,"],["741350","imagine"],["741670","it's"],["741807","something"],["741945",""],["742220","you"],["742350","can"],["742670","walk"],["742970","on,"],["743170","if"],["743270","we"],["743340","walk"],["743600","along"],["743860","the"],["743950","length"],["744160","of"],["744210","the"],["744330","arrow,"],["744750",""],["745015",""],["745280","at"],["745400","the"],["745500","very"],["745860","tip"],["746120","of"],["746210","that"],["746400","arrow,"],["746715",""],["747030","we"],["747230","will"],["747380","find"],["747670",""],["747960",""],["748170","the"],["748280","location"],["748770","in"],["748920","memory"],["749205",""],["749490","where"],["749860","k"],["750220",""],["750580","lives."],["750985",""],["751390","And"],["751510","that's"],["751700","really"],["751930","important"],["752320","because"],["752540","once"],["752800","we"],["752900","know"],["753100","where"],["753290","k"],["753590","lives,"],["753975",""],["754360","we"],["754580","can"],["754680","start"],["754940","to"],["755030","work"],["755380","with"],["755750",""],["756010","the"],["756140","data"],["756360","inside"],["756810","of"],["756910","that"],["757080","memory"],["757310","location."],["757590",""],["757870","Though"],["758130","we're"],["758270","getting"],["758595","a"],["758703","teeny"],["758811","bit"],["758920","ahead"],["759100","of"],["759170","ourselves"],["759530","for"],["759650","now."],["759890",""],["760335",""],["760780","So"],["760830","what"],["761000","is"],["761080","a"],["761140","pointer?"],["761370",""],["761530",""],["761885",""],["762240","A"],["762330","pointer"],["762640","is"],["762720","a"],["762780","data"],["763070","item"],["763490",""],["763850","whose"],["764050","value"],["764385",""],["764720","is"],["764840","a"],["764880","memory"],["765170","address."],["765590","That"],["765720","was"],["765840","that"],["765960","zero"],["766400",""],["766890","x"],["767270","eight"],["767470","zero"],["767920","stuff"],["768240","going"],["768460","on,"],["768630","that"],["768800","was"],["768930","a"],["768970","memory"],["769390","address."],["769740","That"],["769780","was"],["769920","a"],["769980","location"],["770325",""],["770670","in"],["770880","memory."],["771360",""],["771710",""],["772060","And"],["772290","the"],["772470","type"],["772825",""],["773180","of"],["773300","a"],["773360","pointer"],["773840",""],["774040","describes"],["774315",""],["774590","the"],["774720","kind"],["775080","of"],["775180","data"],["775400","you'll"],["775600","find"],["775865",""],["776130","at"],["776180","that"],["776350","memory"],["776590","address."],["776930","So"],["777030","there's"],["777100","the"],["777300","int"],["777520","star"],["777940","part"],["778190","right."],["778520",""],["778810","If"],["779040","I"],["779200","follow"],["779480",""],["779760","that"],["780130","arrow,"],["780385",""],["780640",""],["780870","it's"],["781010","going"],["781110","to"],["781190","lead"],["781510","me"],["781630","to"],["781955",""],["782280","a"],["782330","location."],["782715",""],["783100",""],["783395",""],["783690","And"],["783980","that"],["784160","location,"],["784450",""],["784740","what"],["784910","I"],["784950","will"],["785100","find"],["785540","there"],["785930",""],["786370","in"],["786500","my"],["786620","example,"],["786980","is"],["787090","a"],["787160","green"],["787580","colored"],["787870","box."],["788240","It's"],["788430","an"],["788720","integer,"],["788995",""],["789270",""],["789650","that's"],["789970","what"],["790160","I"],["790260","will"],["790400","find"],["790870","if"],["790980","I"],["791050","go"],["791440","to"],["791590","that"],["791780","address."],["792150",""],["792250",""],["792350",""],["792650","The"],["792870","data"],["793250","type"],["793640","of"],["793750","a"],["793820","pointer"],["794050",""],["794170","describes"],["794580","what"],["794830","you"],["794950","will"],["795060","find"],["795455",""],["795850",""],["796150",""],["796450","at"],["796670","that"],["796870","memory"],["797130","address."],["797570",""],["798010",""],["798450","So"],["798460","here's"],["798680","the"],["798790","really"],["798980","cool"],["799210","thing"],["799410","though."],["799560","Pointers"],["799960",""],["800360",""],["800695",""],["801030","allow"],["801340","us"],["801500","to"],["801600","pass"],["801865",""],["802130","variables"],["802555",""],["802980",""],["803340","between"],["803635",""],["803930","functions."],["804285",""],["804640",""],["805090","And"],["805260","actually"],["805525",""],["805790","pass"],["806190","variables"],["806495",""],["806800","and"],["806960","not"],["807220","pass"],["807550","copies"],["808010","of"],["808140","them."],["808520","Because"],["808760","if"],["808850","we"],["808960","know"],["809180","exactly"],["809555",""],["809930","where"],["810240","in"],["810340","memory"],["810680","to"],["810760","find"],["811175",""],["811590",""],["811870","a"],["811950","variable,"],["812255",""],["812560",""],["812900","we"],["813150","don't"],["813250","need"],["813350","to"],["813390","make"],["813510","a"],["813570","copy"],["813870","of"],["813920","it,"],["813970","we"],["814070","can"],["814150","just"],["814430","go"],["814650","to"],["814700","that"],["814880","location"],["815275",""],["815670","and"],["815870","work"],["816180","with"],["816330","that"],["816760","variable."],["817015",""],["817270",""],["817760",""],["818250","So"],["818270","in"],["818340","essence"],["818670","pointers"],["819000","sort"],["819220","of"],["819300","make"],["819470","a"],["819540","computer"],["819900","environment"],["820260","a"],["820310","lot"],["820530","more"],["820740","like"],["821020","the"],["821220","real"],["821490","world,"],["821795",""],["822100","right."],["822360","So"],["822580","here's"],["822830","an"],["822930","analogy."],["823215",""],["823500",""],["823880",""],["824260",""],["824640","Let's"],["824860","say"],["825030","that"],["825210","I"],["825380","have"],["825635",""],["825890","a"],["826270","notebook,"],["826580",""],["826890","right,"],["827140","and"],["827260","it's"],["827400","full"],["827560","of"],["827670","notes."],["828080","And"],["828380",""],["828680","I"],["828850","would"],["829020","like"],["829260","you"],["829630","to"],["829730","update"],["830080","it."],["830230","You"],["830530","are"],["830700","a"],["830930","function"],["831160","that"],["831330","updates"],["831755",""],["832180","notes,"],["832650","right."],["832990",""],["833475",""],["833960","In"],["834300","the"],["834400","way"],["834510","we've"],["834650","been"],["834710","working"],["835010","so"],["835230","far,"],["835550",""],["835870",""],["836310","what"],["836390","happens"],["836700",""],["837010","is"],["837400",""],["837790",""],["838120","you"],["838575",""],["839030","will"],["839210","take"],["839440","my"],["839540","notebook,"],["839795",""],["840050",""],["840385",""],["840720","you'll"],["840980","go"],["841130","to"],["841180","the"],["841260","copy"],["841550","store,"],["841960",""],["842370","you'll"],["842580","make"],["842890",""],["843200","a"],["843300","Xerox"],["843750","copy"],["844090","of"],["844230","every"],["844500","page"],["844750","of"],["844810","the"],["844860","notebook."],["845350",""],["845703",""],["846056",""],["846410","You'll"],["846725",""],["847040","leave"],["847260","my"],["847450","notebook"],["847640","back"],["847900","on"],["847960","my"],["848050","desk"],["848290","when"],["848360","you're"],["848440","done,"],["848710",""],["849070",""],["849430",""],["849790","you'll"],["850170","go"],["850450","and"],["850770",""],["851230","cross"],["851600","out"],["851780","things"],["852000","in"],["852113","my"],["852226","notebook"],["852340",""],["852410","that"],["852470","are"],["852610","out"],["852800","of"],["852900","date"],["853130","or"],["853350","wrong,"],["853790",""],["854195",""],["854600","and"],["854730","then"],["854820","you'll"],["854970","pass"],["855370","back"],["855690","to"],["855820","me"],["856180",""],["856560","the"],["856845",""],["857130",""],["857400","stack"],["857665",""],["857930","of"],["858000","Xerox"],["858270",""],["858540","pages"],["858910",""],["859280","that"],["859420","is"],["859560","a"],["859690","replica"],["860190","of"],["860350","my"],["860460","notebook"],["860860","with"],["860980","the"],["861060","changes"],["861530","that"],["861620","you've"],["861710","made"],["861950","to"],["862100","it."],["862320",""],["862585",""],["862850","And"],["863060","at"],["863180","that"],["863420","point,"],["863670","it's"],["863780","up"],["863910","to"],["864020","me"],["864390","as"],["864600","the"],["864780","calling"],["865085",""],["865390","function,"],["865750","as"],["865850","the"],["865930","caller,"],["866245",""],["866560",""],["867040","to"],["867270","decide"],["867680","to"],["867910","take"],["868210","your"],["868400","notes"],["868670","and"],["868820","integrate"],["869260","them"],["869550","back"],["869810","into"],["870000","my"],["870090","notebook."],["870355",""],["870620",""],["870900","So"],["870970","there's"],["871040","a"],["871080","lot"],["871190","of"],["871260","steps"],["871740","involved"],["872130","here,"],["872310","right."],["872540","Like"],["872680","wouldn't"],["872890","it"],["872970","be"],["873060","better"],["873510",""],["873750","if"],["873950","I"],["874110","just"],["874290","say,"],["874450","hey,"],["874620","can"],["874750","you"],["874850","update"],["875120","my"],["875190","notebook"],["875530","for"],["875660","me,"],["876100","hand"],["876440","you"],["876610","my"],["876750","notebook,"],["877105",""],["877460",""],["877915",""],["878370","and"],["878500","you"],["878720","take"],["879050","things"],["879260","and"],["879350","literally"],["879700","cross"],["879990","them"],["880140","out"],["880440","and"],["880730","update"],["881130","my"],["881280","notes"],["881600","in"],["881820","my"],["881990","notebook."],["882285",""],["882580",""],["882810","And"],["883100","then"],["883280","give"],["883430","me"],["883530","my"],["883640","notebook"],["883980","back."],["884320",""],["884730",""],["885140","That's"],["885580","kind"],["885850","of"],["885920","what"],["886120","pointers"],["886490","allow"],["886800","us"],["886970","to"],["887100","do,"],["887320","they"],["887440","make"],["887700","this"],["887850","environment"],["888240","a"],["888280","lot"],["888510","more"],["888680","like"],["888860","how"],["889050","we"],["889210","operate"],["889670","in"],["889820","reality."],["890110",""],["890400",""],["890860",""],["891320","All"],["891400","right"],["891590","so"],["891810","that's"],["892060","what"],["892180","a"],["892240","pointer"],["892510",""],["892780",""],["893105",""],["893430","is,"],["893760",""],["894090",""],["894350","let's"],["894520","talk"],["894640","about"],["894770","how"],["894990","pointers"],["895460","work"],["895740","in"],["895880","C,"],["896305",""],["896730","and"],["896900","how"],["897090","we"],["897210","can"],["897320","start"],["897510","to"],["897590","work"],["897770","with"],["897880","them."],["898040","So"],["898200","there's"],["898620","a"],["898690","very"],["898990","simple"],["899280",""],["899570","pointer"],["899840",""],["900110",""],["900330","in"],["900500","C"],["900740","called"],["901100","the"],["901170","null"],["901370","pointer."],["901810",""],["902180",""],["902550","The"],["902650","null"],["902830","pointer"],["903180","points"],["903460","to"],["903540","nothing."],["904030",""],["904430",""],["904830","This"],["904960","probably"],["905360","seems"],["905690","like"],["905810","it's"],["905940","actually"],["906390","not"],["906700","a"],["906730","very"],["907010","useful"],["907370","thing,"],["907750",""],["908030",""],["908310","but"],["908590","as"],["908730","we'll"],["908840","see"],["909170","a"],["909250","little"],["909530","later"],["909790","on,"],["910140","the"],["910230","fact"],["910500","that"],["910610","this"],["910760","null"],["911040","pointer"],["911430","exists"],["911865",""],["912300",""],["912693",""],["913086",""],["913480","actually"],["913780","really"],["913970","can"],["914210","come"],["914380","in"],["914450","handy."],["914890",""],["915150",""],["915410","And"],["915750","whenever"],["916080","you"],["916210","create"],["916550","a"],["916610","pointer,"],["917050",""],["917300","and"],["917420","you"],["917540","don't"],["917870","set"],["918120","its"],["918290","value"],["918620","immediately-"],["919090","an"],["919220","example"],["919590","of"],["919670","setting"],["920160","its"],["920320","value"],["920640","immediately"],["921060","will"],["921115","be"],["921170","a"],["921210","couple"],["921500","slides"],["921840","back"],["922120","where"],["922250","I"],["922320","said"],["922700","pk"],["922975",""],["923250","equals"],["923720","&"],["923995",""],["924270","k,"],["924647",""],["925024",""],["925401","pk"],["925780","gets"],["925980","k's"],["926330","address,"],["926650",""],["926970",""],["927265",""],["927560","as"],["927880","we'll"],["927970","see"],["928100","what"],["928190","that"],["928340","means,"],["928740","we'll"],["928870","see"],["929020","how"],["929150","to"],["929430",""],["929830","code"],["930110","that"],["930300","shortly-"],["930710",""],["931100",""],["931490","if"],["931640","we"],["931720","don't"],["931940","set"],["932210","its"],["932370","value"],["932680","to"],["932835","something"],["932990","meaningful"],["933300",""],["933610","immediately,"],["933955",""],["934300","you"],["934400","should"],["934550",""],["934770","always"],["935075",""],["935380","set"],["935675",""],["935970","your"],["936120","pointer"],["936560","to"],["936670","point"],["936950","to"],["937050","null."],["937480","You"],["937523","should"],["937566","set"],["937610","it"],["937760","to"],["937830","point"],["938090","to"],["938200","nothing."],["938630",""],["939037",""],["939444",""],["939851",""],["940260","That's"],["940580","very"],["940890","different"],["941200","than"],["941290","just"],["941450","leaving"],["941735",""],["942020","the"],["942110","value"],["942470",""],["942830",""],["943100","as"],["943320","it"],["943430","is"],["943690","and"],["943750","then"],["944040","declaring"],["944400","a"],["944460","pointer"],["944780","and"],["944890","just"],["945120","assuming"],["945530","it's"],["945660","null"],["945840","because"],["945970","that's"],["946140",""],["946460","rarely"],["946725",""],["946990","true."],["947400",""],["947776",""],["948152",""],["948530","So"],["948650","you"],["948700","should"],["948850","always"],["949170","set"],["949310","the"],["949380","value"],["949640","of"],["949680","a"],["949740","pointer"],["950000","to"],["950130","null"],["950430",""],["950730","if"],["951010","you"],["951180","don't"],["951500",""],["951930",""],["952140",""],["952290",""],["952350",""],["952530","set"],["952730","its"],["952860","value"],["953100","to"],["953240","something"],["953380","meaningful"],["953810",""],["954240","immediately."],["954580",""],["954920",""],["955305",""],["955690","You"],["955820","can"],["955960","check"],["956230","whether"],["956500","a"],["956655","pointer's"],["956810","value"],["957160","is"],["957450","null"],["957770","using"],["958120","the"],["958210","equality"],["958600","operator"],["959090","(==),"],["959450",""],["959780","just"],["959920","like"],["960020","you"],["960120","compare"],["960385",""],["960650","any"],["961030",""],["961375",""],["961720","integer"],["962130","values"],["962490",""],["962850",""],["963155",""],["963460","or"],["963620","character"],["964000","values"],["964320","using"],["964670","(==)"],["965050",""],["965450","as"],["965560","well."],["965870",""],["966320","It's"],["966450","a"],["966560","special"],["966890",""],["967220","sort"],["967480","of"],["967570","constant"],["967910",""],["968250","value"],["968610","that"],["968655","you"],["968700","can"],["968810","use"],["968980","to"],["969090","test."],["969530",""],["969947",""],["970364",""],["970781",""],["971200","So"],["971300","that"],["971430","was"],["971560","a"],["971610","very"],["971810","simple"],["972160","pointer,"],["972340",""],["972420","the"],["972540","null"],["972780","pointer."],["973000",""],["973160","Another"],["973470","way"],["973600","to"],["973690","create"],["973930","a"],["973980","pointer"],["974170",""],["974300","is"],["974430","to"],["974560","extract"],["974940",""],["975320","the"],["975450","address"],["975950","of"],["976030","a"],["976070","variable"],["976440","you've"],["976610","already"],["976915",""],["977220","created,"],["977535",""],["977850",""],["978240","and"],["978480","you"],["978520","do"],["978560","this"],["978720","using"],["978970","the"],["979210","&"],["979500",""],["979790","operator"],["980055",""],["980320","address"],["980630","extraction."],["980920",""],["981210",""],["981583",""],["981956",""],["982330","Which"],["982450","we've"],["982610","already"],["982800","seen"],["982980","previously"],["983275",""],["983570","in"],["983730","the"],["983810","first"],["984240",""],["984700","diagram"],["985170","example"],["985540","I"],["985600","showed."],["986060",""],["986390",""],["986720","So"],["987065",""],["987410","if"],["987760","x"],["988090",""],["988420","is"],["988560","a"],["988620","variable"],["988970","that"],["989030","we've"],["989170","already"],["989400","created"],["989670",""],["989940","of"],["990060","type"],["990370","integer,"],["990640",""],["990910",""],["991180",""],["991450","then"],["991830","&x"],["992230",""],["992630",""],["992910",""],["993190",""],["993430","is"],["993780","a"],["993870","pointer"],["994190","to"],["994330","an"],["994472","integer."],["994615",""],["994900",""],["995110","&x"],["995560",""],["995820","is-"],["996220","remember,"],["996520","&"],["996850","is"],["996940","going"],["997040","to"],["997090","extract"],["997400",""],["997710","the"],["997880","address"],["998180",""],["998480","of"],["998610","the"],["998710","thing"],["998930","on"],["999030","the"],["999110","right."],["999440",""],["999810","And"],["999990","since"],["1000220","a"],["1000300","pointer"],["1000740","is"],["1000840","just"],["1001080","an"],["1001180","address,"],["1001640","than"],["1001890","&x"],["1002160",""],["1002430",""],["1002660","is"],["1002770","a"],["1002870","pointer"],["1003175",""],["1003480",""],["1003870","to"],["1004060","an"],["1004140","integer"],["1004430",""],["1004720",""],["1005035",""],["1005350","whose"],["1005540","value"],["1005920",""],["1006300",""],["1006570","is"],["1006740","where"],["1007010",""],["1007280","in"],["1007440","memory"],["1007930","x"],["1008240","lives."],["1008560","It's"],["1008790","x's"],["1009165",""],["1009540","address."],["1009885",""],["1010230",""],["1010460","So"],["1010640","&x"],["1010905",""],["1011170",""],["1011450","is"],["1011610","the"],["1011760","address"],["1012170","of"],["1012300","x."],["1012560",""],["1012820",""],["1013300","Let's"],["1013500","take"],["1013680","this"],["1013810","one"],["1014170","step"],["1014430","further"],["1014810","and"],["1014910","connect"],["1015270","to"],["1015350","something"],["1015670","I"],["1015750","alluded"],["1016140","to"],["1016490",""],["1016740","in"],["1016900","a"],["1016950","prior"],["1017250","video."],["1017515",""],["1017780",""],["1018080",""],["1018380","If"],["1018660","arr"],["1018890",""],["1019345",""],["1019800","is"],["1019950","an"],["1020180","array"],["1020420","of"],["1020560","doubles,"],["1020875",""],["1021190",""],["1021535",""],["1021880","then"],["1022270",""],["1022710",""],["1023150","&arr"],["1023330","square bracket"],["1023645","i"],["1023960",""],["1024359",""],["1024770",""],["1025099",""],["1025459",""],["1025819","is"],["1025970","a"],["1026050","pointer"],["1026390",""],["1026730","to"],["1027010","a"],["1027069","double."],["1027420",""],["1027764",""],["1028109","OK."],["1028470",""],["1028970","arr"],["1029130","square"],["1029320","bracket"],["1029510","i,"],["1029819",""],["1030190",""],["1030550","if"],["1030910","arr"],["1031020",""],["1031160",""],["1031300","is"],["1031369","an"],["1031540","array"],["1031690","of"],["1031770","doubles,"],["1032160","then"],["1032359","arr"],["1032739","square bracket"],["1033119","i"],["1033499",""],["1033880",""],["1034339","is"],["1034694",""],["1035050","the"],["1035349","i-th"],["1035450",""],["1035930","element"],["1036249",""],["1036569",""],["1036844",""],["1037119","of"],["1037319","that"],["1037500","array,"],["1037819",""],["1038235",""],["1038651",""],["1039069","and"],["1039450","&arr"],["1039899","square bracket"],["1040349","i"],["1040540",""],["1040824",""],["1041109",""],["1041380",""],["1041700",""],["1041980",""],["1042430","is"],["1042609","where"],["1042869",""],["1043130","in"],["1043310","memory"],["1043655",""],["1044000",""],["1044349","the"],["1044619","i-th"],["1044720",""],["1044980",""],["1045240","element"],["1045610",""],["1045980",""],["1046280","of"],["1046579","arr"],["1046800",""],["1047189",""],["1047579","exists."],["1047959",""],["1048339",""],["1048804",""],["1049270","So"],["1049410","what's"],["1049660","the"],["1049820","implication"],["1050170",""],["1050520","here?"],["1050890",""],["1051340",""],["1051790","An"],["1052020","arrays"],["1052510","name,"],["1052865",""],["1053220","the"],["1053430","implication"],["1053870","of"],["1053960","this"],["1054090","whole"],["1054270","thing,"],["1054570","is"],["1054820","that"],["1055180",""],["1055430","an"],["1055600","array's"],["1055940","name"],["1056170","is"],["1056330","actually"],["1056635",""],["1056940","itself"],["1057330",""],["1057720",""],["1057960","a"],["1058050","pointer."],["1058345",""],["1058640",""],["1058965",""],["1059290","You've"],["1059440","been"],["1059550","working"],["1059800","with"],["1059970","pointers"],["1060420","all"],["1060620","along"],["1060895",""],["1061170","every"],["1061580","time"],["1061925",""],["1062270","that"],["1062580","you've"],["1062800","used"],["1063090",""],["1063380","an"],["1063640","array."],["1063895",""],["1064150",""],["1064530",""],["1064910",""],["1065290","Remember"],["1065600","from"],["1065740","the"],["1066130","example"],["1066530","on"],["1066770","variable"],["1067210","scope,"],["1067545",""],["1067880",""],["1068283",""],["1068686",""],["1069090","near"],["1069210","the"],["1069370","end"],["1069550","of"],["1069640","the"],["1069700","video"],["1070010","I"],["1070320","present"],["1070730","an"],["1070820","example"],["1071250",""],["1071680","where"],["1071970",""],["1072260","we"],["1072410","have"],["1072870","a"],["1072970","function"],["1073420","called"],["1073660","set"],["1074150","int"],["1074640",""],["1074920","and"],["1075170","a"],["1075230","function"],["1075650","called"],["1076040","set"],["1076490","array."],["1076660",""],["1076890","And"],["1077070","your"],["1077160","challenge"],["1077600","to"],["1077910","determine"],["1078185",""],["1078460","whether"],["1078870","or"],["1078930","not,"],["1079380",""],["1079740",""],["1080100","or"],["1080220","what"],["1080420","the"],["1080490","values"],["1080930","that"],["1081040","we"],["1081150","printed"],["1081490","out"],["1081680","the"],["1081800","end"],["1081950","of"],["1081990","the"],["1082060","function,"],["1082380",""],["1082700",""],["1082960",""],["1083220","at"],["1083290","the"],["1083390","end"],["1083540","of"],["1083670","the"],["1083740","main"],["1083990","program."],["1084250",""],["1084510",""],["1084993",""],["1085476",""],["1085960","If"],["1086160","you"],["1086330","recall"],["1086740","from"],["1086850","that"],["1086960","example"],["1087300","or"],["1087330","if"],["1087360","you've"],["1087500","watched"],["1087730","the"],["1087810","video,"],["1088260",""],["1088740","you"],["1088920","know"],["1089180","that"],["1089410","when"],["1089530","you-"],["1089840",""],["1090160","the"],["1090230","call"],["1090480","to"],["1090570","set"],["1090800","int"],["1091070","effectively"],["1091490","does"],["1091680","nothing."],["1091935",""],["1092190",""],["1092635",""],["1093080","But"],["1093200","the"],["1093310","call"],["1093610","to"],["1093710","set"],["1094060","array"],["1094465",""],["1094870",""],["1095300","does."],["1095740",""],["1096180",""],["1096390","And"],["1096580","I"],["1096630","sort"],["1096680","of"],["1096760","glossed"],["1097120","over"],["1097320","why"],["1097585",""],["1097850","that"],["1098030","was"],["1098200","the"],["1098350","case"],["1098740","at"],["1098820","the"],["1098940","time."],["1099280","I"],["1099380","just"],["1099510","said,"],["1099580","well"],["1099790","it's"],["1099890","an"],["1099980","array,"],["1100260","it's special,"],["1100670","you know,"],["1100780","there's"],["1100970","a"],["1101040","reason."],["1101370",""],["1101665",""],["1101960","The"],["1102010","reason"],["1102300","is"],["1102430","that"],["1102650","an"],["1102790","array's"],["1103120","name"],["1103390","is"],["1103500","really"],["1103840","just"],["1104070","a"],["1104120","pointer,"],["1104445",""],["1104770",""],["1105020","and"],["1105320",""],["1105620",""],["1105925",""],["1106230","there's"],["1106570","this"],["1106670","special"],["1106990",""],["1107310","square"],["1107700","bracket"],["1108020","syntax"],["1108330",""],["1108640","that"],["1108740","make"],["1109000","things"],["1109230","a"],["1109300","lot"],["1109560","nicer"],["1109820","to"],["1109910","work"],["1110160","with."],["1110510","And"],["1110550","they"],["1110610","make"],["1111000","the"],["1111230","idea"],["1111640","of"],["1111740","a"],["1111810","pointer"],["1112170","a"],["1112220","lot"],["1112450","less"],["1112890",""],["1113270",""],["1113650","intimidating,"],["1114030",""],["1114410","and"],["1114490","that's"],["1114690","why"],["1115050","they're"],["1115210","sort"],["1115330","of"],["1115410","presented"],["1115860","in"],["1115960","that"],["1116150","way."],["1116460",""],["1116800","But"],["1117040","really"],["1117370",""],["1117510","arrays"],["1117880","are"],["1118090","just"],["1118290","pointers."],["1118600","And"],["1118720","that's"],["1118930","why"],["1119280","when"],["1119520","we"],["1119620","made"],["1119830","a"],["1119930","change"],["1120265",""],["1120600","to"],["1120760","the"],["1120970","array,"],["1121275",""],["1121580","when we"],["1121850","passed"],["1122150","an"],["1122420","array"],["1122690","as"],["1122840","a"],["1122910",""],["1123310","parameter"],["1123750","to"],["1123860","a"],["1123910","function"],["1124260","or"],["1124310","as"],["1124360","an"],["1124470","argument"],["1124880","to"],["1124980","a"],["1125040","function,"],["1125315",""],["1125590",""],["1125875",""],["1126160","the"],["1126300","contents"],["1126740","of"],["1126820","the"],["1126950","array"],["1127270","actually"],["1127540",""],["1127810","changed"],["1128090",""],["1128370","in"],["1128540","both"],["1128860","the"],["1129010","callee"],["1129360",""],["1129710",""],["1130110","and"],["1130440","in"],["1130550","the"],["1130640","caller."],["1130930",""],["1131160","Which"],["1131480",""],["1131840","for"],["1132030","every"],["1132270","other"],["1132410","kind"],["1132610","of"],["1132670","variable"],["1133080","we"],["1133170","saw"],["1133640",""],["1133930","was"],["1134130","not"],["1134530","the"],["1134650","case."],["1134905",""],["1135160",""],["1135590",""],["1136020","So"],["1136040","that's"],["1136180","just"],["1136290","something"],["1136560","to"],["1136620","keep"],["1136800","in"],["1136870","mind"],["1137110","when"],["1137190","you're"],["1137300","working"],["1137580","with"],["1137800",""],["1138300",""],["1138450","pointers,"],["1138710",""],["1138970","is"],["1139110","that"],["1139350",""],["1139680","the"],["1139790","name"],["1140120","of"],["1140210","an"],["1140300","array"],["1140580",""],["1140860","actually"],["1141140","a"],["1141200","pointer"],["1141610","to"],["1141720","the"],["1141810","first"],["1142310","element"],["1142760",""],["1143150","of"],["1143390","that"],["1143610","array."],["1143920",""],["1144335",""],["1144750","OK"],["1144940","so"],["1145060","now"],["1145200","we"],["1145270","have"],["1145440","all"],["1145560","these"],["1145825",""],["1146090","facts,"],["1146520","let's"],["1146810",""],["1147100","keep"],["1147270","going,"],["1147530","right."],["1147850",""],["1148210",""],["1148570",""],["1148930","Why"],["1149340","do"],["1149500","we"],["1149620","care"],["1150070","about"],["1150310","where"],["1150590","something"],["1150960","lives."],["1151275",""],["1151590","Well"],["1151730","like"],["1151870","I"],["1152010","said,"],["1152155","it's"],["1152300","pretty"],["1152490","useful"],["1152830","to"],["1152960","know"],["1153220",""],["1153480","where"],["1153740","something"],["1153950","lives"],["1154120","so"],["1154240","you"],["1154370","can"],["1154710",""],["1155120","go"],["1155310","there"],["1155570","and"],["1156030",""],["1156310","change"],["1156690","it."],["1157140",""],["1157240","Work"],["1157500","with"],["1157610","it"],["1157680","and"],["1157810","actually"],["1158160","have"],["1158400","the"],["1158520","thing"],["1158940","that"],["1159210","you"],["1159390","want"],["1159550","to"],["1159620","do"],["1159880",""],["1160140","to"],["1160460","that"],["1160650","variable"],["1161030","take"],["1161370","effect,"],["1161710","and"],["1161770","not"],["1161980","take"],["1162130","effect"],["1162360","on"],["1162420","some"],["1162590","copy"],["1163000","of"],["1163100","it."],["1163320",""],["1163710","This"],["1163900","is"],["1164040","called"],["1164450","dereferencing."],["1164940",""],["1165430",""],["1165790",""],["1166150","We"],["1166330","go"],["1166780","to"],["1167050","the"],["1167190","reference"],["1167620","and"],["1167720","we"],["1167830","change"],["1168180","the"],["1168250","value"],["1168520","there."],["1168690","So"],["1168800","if"],["1168880","we"],["1168970","have"],["1169130","a"],["1169190","pointer"],["1169550",""],["1169910","and"],["1170030","it's"],["1170160","called"],["1170490","pc,"],["1170970","and"],["1171060","it"],["1171150","points"],["1171420","to"],["1171550","a"],["1171610","character,"],["1171900",""],["1172190",""],["1172660","then"],["1172790","we"],["1172890","can"],["1173020","say"],["1173480","*pc"],["1173800",""],["1174120",""],["1174455",""],["1174790",""],["1175210","and"],["1175480","*pc"],["1175970",""],["1176430","is"],["1176690",""],["1176950","the"],["1177130","name"],["1177475",""],["1177820",""],["1178270","of"],["1178580","what"],["1178920","we'll"],["1179120","find"],["1179475",""],["1179830","if"],["1180030","we"],["1180310","go"],["1180610","to"],["1180740","the"],["1180920","address"],["1181280",""],["1181640",""],["1181860","pc."],["1182145",""],["1182430",""],["1182910","What"],["1183020","we'll"],["1183120","find"],["1183410","there"],["1183510","is"],["1183610","a"],["1183670","character"],["1183950",""],["1184230","and"],["1184560","*pc"],["1184815",""],["1185070",""],["1185465",""],["1185860","is"],["1186130","how"],["1186310","we"],["1186420","refer"],["1186820","to"],["1186900","the"],["1186990","data"],["1187420","at"],["1187650","that"],["1187860","location."],["1188180",""],["1188500",""],["1188880","So"],["1188910","we"],["1189010","could"],["1189130","say"],["1189260","something"],["1189490","like"],["1189730","*pc=D"],["1190025",""],["1190320",""],["1190700",""],["1191080",""],["1191445",""],["1191810",""],["1192200",""],["1192630",""],["1192885",""],["1193140","or"],["1193240","something"],["1193480","like"],["1193640","that,"],["1193895",""],["1194150","and"],["1194450","that"],["1194740",""],["1194980","means"],["1195340","that"],["1195770","whatever"],["1196090","was"],["1196290","at"],["1196630",""],["1197020","memory"],["1197370","address"],["1197740","pc,"],["1198050",""],["1198360",""],["1198820",""],["1199280","whatever"],["1199610","character"],["1200010","was"],["1200160","previously"],["1200580","there,"],["1200885",""],["1201190","is"],["1201340","now"],["1201720",""],["1202120","D,"],["1202280","if"],["1202380","we"],["1202480","say"],["1202720","*pc=D."],["1203180",""],["1203495",""],["1203810",""],["1204060",""],["1204430",""],["1204770",""],["1205060",""],["1205555",""],["1206050",""],["1206545",""],["1207040","So"],["1207355",""],["1207670","here"],["1207860","we"],["1207940","go"],["1208040","again"],["1208240","with"],["1208390","some"],["1208680","weird"],["1209150","C"],["1209570","stuff,"],["1209920","right."],["1210090","So"],["1210160","we've"],["1210250","seen"],["1210530","*"],["1210980","previously"],["1211320",""],["1211660","as"],["1211920","being"],["1212160","somehow"],["1212550","part"],["1212870","of"],["1213000","the"],["1213100","data"],["1213460","type,"],["1213740",""],["1214020",""],["1214290",""],["1214560","and"],["1214700","now"],["1214860","it's"],["1214960","being"],["1215210","used"],["1215480","in"],["1215570","a"],["1215640","slightly"],["1215960","different"],["1216330","context"],["1216745",""],["1217160","to"],["1217540","access"],["1217820",""],["1218100","the"],["1218220","data"],["1218650","at"],["1218790","a"],["1218840","location."],["1219180",""],["1219520",""],["1219870",""],["1220220","I know"],["1220350","it's"],["1220400",""],["1220500","a"],["1220540","little"],["1220670","confusing"],["1221110","and"],["1221170","that's"],["1221340","actually"],["1221650","part"],["1221920","of"],["1222010","this"],["1222150","whole"],["1222480","like,"],["1222710","why"],["1223090","pointers"],["1223530","have"],["1223680","this"],["1223890","mythology"],["1224225",""],["1224560","around"],["1224920","them"],["1224990","as"],["1225060","being"],["1225130","so"],["1225270","complex,"],["1225740","is"],["1225970","kind"],["1226230","of"],["1226340","a"],["1226380","syntax"],["1226640",""],["1226900","problem,"],["1227230","honestly."],["1227710",""],["1227980",""],["1228250","But"],["1228470","*"],["1228940","is"],["1229100","used"],["1229400","in"],["1229480","both"],["1229720","contexts,"],["1230180","both"],["1230620","as"],["1230790","part"],["1230970","of"],["1231030","the"],["1231120","type"],["1231440","name,"],["1231810","and"],["1232120","we'll"],["1232230","see"],["1232360","a"],["1232410","little"],["1232580","later"],["1232820","something"],["1233070","else,"],["1233300","too."],["1233680",""],["1234100","And"],["1234420",""],["1234490","right"],["1234700","now"],["1234970","is"],["1235120","the"],["1235230","dereference"],["1235570",""],["1235910","operator."],["1236200",""],["1236490","So"],["1236580","it"],["1236670","goes"],["1237020","to"],["1237170","the"],["1237270","reference,"],["1237760","it"],["1237955","accesses"],["1238150",""],["1238300","the"],["1238400","data"],["1238760","at"],["1239020","the"],["1239120","location"],["1239445",""],["1239770",""],["1240065",""],["1240360","of"],["1240570","the"],["1240650","pointer,"],["1241100",""],["1241410",""],["1241720","and"],["1241840","allows"],["1242060","you"],["1242130","to"],["1242190","manipulate"],["1242630","it"],["1242790","at will."],["1243000","Now"],["1243090","this"],["1243250","is"],["1243320","very"],["1243510","similar"],["1243950","to"],["1244360",""],["1244690","visiting"],["1245030","your"],["1245130","neighbor,"],["1245480","right."],["1245900","If"],["1246040","you"],["1246160","know"],["1246420","what"],["1246560","your"],["1246700","neighbor"],["1247030","lives,"],["1247460",""],["1247890",""],["1248175",""],["1248460","you're"],["1248710","not"],["1249180","hanging"],["1249470","out"],["1249570","with"],["1249650","your"],["1249720","neighbor."],["1250120",""],["1250425",""],["1250730","You"],["1250880","know"],["1251030",""],["1251090","you"],["1251280","happen"],["1251650","to"],["1252060","know"],["1252240","where"],["1252380","they"],["1252510","live,"],["1252765",""],["1253020",""],["1253510","but"],["1253835",""],["1254160","that"],["1254300","doesn't"],["1254500","mean"],["1254770","that"],["1255070","by"],["1255260","virtue"],["1255580","of"],["1255630",""],["1255870","having"],["1256120","that"],["1256280","knowledge"],["1256575",""],["1256870","you"],["1257190",""],["1257510",""],["1257740","are"],["1258050","interacting"],["1258440","with"],["1258560","them."],["1258800",""],["1259170","If"],["1259310","you"],["1259440","want"],["1259580","to"],["1259620","interact"],["1259890",""],["1260160","with"],["1260290","them,"],["1260450","you"],["1260560","have"],["1260740","to"],["1260850","go"],["1261280","to"],["1261470","their"],["1261650","house,"],["1261920","you"],["1262050","have"],["1262140","to"],["1262230","go"],["1262520","to"],["1262690","where"],["1262880","they"],["1263020","live."],["1263500",""],["1263760","And"],["1264020","once"],["1264270","you"],["1264430","do"],["1264800","that,"],["1265150",""],["1265500",""],["1265815",""],["1266130","then"],["1266290","you"],["1266380","can"],["1266520","interact"],["1266980",""],["1267440","with"],["1267760","them"],["1268080","just"],["1268310","like"],["1268500",""],["1268770","you'd"],["1269120","want"],["1269300","to."],["1269420","And"],["1269520","similarly"],["1269860","with"],["1270010","variables,"],["1270265",""],["1270520","you"],["1270600","need"],["1270780","to"],["1270910","go"],["1271410","to"],["1271660","their"],["1271920","address"],["1272325",""],["1272730","if"],["1272900","you"],["1272990","want"],["1273170","to"],["1273230","interact"],["1273620","them,"],["1273770","you"],["1273850","can't"],["1274060","just"],["1274390","know"],["1274720","the"],["1274860","address."],["1275320","And"],["1275440","the"],["1275510","way"],["1275680","you"],["1275890","go"],["1276280","to"],["1276470","the"],["1276630","address"],["1277105","is"],["1277580","to"],["1277660","use"],["1278160","*,"],["1278460",""],["1278760","the"],["1278890","dereference"],["1279340","operator."],["1279820",""],["1280257",""],["1280694",""],["1281131",""],["1281570","What"],["1281666","do"],["1281763","you"],["1281860","think"],["1282040","happens"],["1282365",""],["1282690","if"],["1282760","we"],["1282840","try"],["1283010","and"],["1283130","dereference"],["1283260",""],["1283620","a"],["1283700","pointer"],["1284070","whose"],["1284260","value"],["1284550","is"],["1284700","null?"],["1284980",""],["1285260","Recall"],["1285620","that"],["1285730","the"],["1285820","null"],["1286095",""],["1286370","pointer"],["1286830","points"],["1287220","to"],["1287380","nothing."],["1287710",""],["1288040",""],["1288470","So"],["1288650","if"],["1288720","you"],["1289020",""],["1289500","try"],["1289750","and"],["1290070","dereference"],["1290260",""],["1290560",""],["1290860","nothing"],["1291140",""],["1291420","or"],["1291550","go"],["1291770","to"],["1291900","an"],["1291970","address"],["1292370",""],["1292770","nothing,"],["1293090",""],["1293410",""],["1293760",""],["1294110","what"],["1294460","do"],["1294560","you"],["1294660","think"],["1294820","happens?"],["1295260",""],["1295700",""],["1296066",""],["1296432",""],["1296800","Well"],["1297110",""],["1297420","if"],["1297560","you"],["1297640","guessed"],["1297910","segmentation"],["1298270",""],["1298630","fault,"],["1298870","you'd"],["1299005","be"],["1299140","right."],["1299630","If"],["1299920","you"],["1299980","try"],["1300230","and"],["1300360","dereference"],["1300650","a"],["1300710","null"],["1301010","pointer,"],["1301490","you"],["1301640","suffer"],["1301800","a"],["1301960","segmentation"],["1302285",""],["1302610","fault."],["1302830","But"],["1302970","wait,"],["1303140","didn't"],["1303380","I"],["1303480","tell"],["1303920","you,"],["1304320",""],["1304790","that"],["1304980","if"],["1305110","you're"],["1305230","not"],["1305690","going"],["1305820","to"],["1305890","set"],["1306220","your"],["1306390","value"],["1306645",""],["1306900","of"],["1306970","your"],["1307090","pointer"],["1307410","to"],["1307480","something"],["1307800","meaningful,"],["1308255",""],["1308710",""],["1308965",""],["1309220","you"],["1309310","should"],["1309450","set"],["1309680","to"],["1309780","null?"],["1310040",""],["1310300",""],["1310650",""],["1311000","I"],["1311090","did"],["1311335","and"],["1311580","actually"],["1311740","the"],["1311900","segmentation"],["1312225",""],["1312550","fault"],["1312920","is"],["1313170","kind"],["1313440","of"],["1313530","a"],["1313590","good"],["1313980","behavior."],["1314405",""],["1314830",""],["1315290","Have"],["1315430","you"],["1315520","ever"],["1315680","declared"],["1316080","a"],["1316130","variable"],["1316475",""],["1316820","and"],["1317000","not"],["1317240","assigned"],["1317670","its"],["1317850","value"],["1318210","immediately?"],["1318680","So"],["1318753","you"],["1318826","just"],["1318900","say"],["1319170","int"],["1319470","x;"],["1319725",""],["1319980",""],["1320330",""],["1320680",""],["1320980","you"],["1321110","don't"],["1321310","actually"],["1321580","assign"],["1321716","it"],["1321853","to"],["1321990","anything"],["1322335",""],["1322680","and"],["1322900","then"],["1323010","later"],["1323350","on"],["1323490","in"],["1323550","your"],["1323670","code,"],["1323980","you"],["1324070","print"],["1324450","out"],["1324570","the"],["1324650","value"],["1324950","of"],["1325050","x,"],["1325340","having"],["1325580","still"],["1325920","not"],["1326120","assigned"],["1326420","it"],["1326500","to"],["1326560","anything."],["1326820",""],["1327080",""],["1327365",""],["1327650","Frequently"],["1328070","you'll"],["1328200","get"],["1328370","zero,"],["1328680",""],["1328990",""],["1329345",""],["1329700","but"],["1329850","sometimes"],["1330250","you"],["1330370","might"],["1330640","get"],["1330860","some"],["1331165",""],["1331470","random"],["1331765",""],["1332060","number,"],["1332500","and"],["1332570","you"],["1332630","have"],["1332730","no"],["1333130","idea"],["1333470","where"],["1333630","it"],["1333690","came"],["1333950","from."],["1334280",""],["1334640",""],["1335000","Similarly"],["1335290",""],["1335580","can"],["1335730","things"],["1335950","happen"],["1336240","with"],["1336400","pointers."],["1336750","When"],["1336860","you"],["1336960","declare"],["1337250",""],["1337540","a"],["1337610","pointer"],["1337940",""],["1338270","int*pk"],["1338490",""],["1338990",""],["1339310",""],["1339470","for"],["1339640","example,"],["1340110","and"],["1340155","you"],["1340200","don't"],["1340340","assign"],["1340400","it"],["1340590","to"],["1340720","a"],["1340857","value,"],["1340995",""],["1341270",""],["1341700","you"],["1341920","get"],["1342340","four"],["1342730","bytes"],["1343070","for"],["1343160","memory."],["1343490","Whatever"],["1343780","four"],["1344220","bytes"],["1344550","of"],["1344640","memory"],["1345050","the"],["1345220","system"],["1345610","can"],["1345950","find"],["1346290",""],["1346630",""],["1346960",""],["1347290","that"],["1347410","have"],["1347600","some"],["1347800","meaningful"],["1348230","value."],["1348485",""],["1348740",""],["1348970","And"],["1349150","there"],["1349250","might"],["1349410","have"],["1349550","been"],["1349900","something"],["1350155",""],["1350410","already"],["1350890","there"],["1351190",""],["1351490","that"],["1351760","is"],["1351950","no"],["1352210","longer"],["1352580","needed"],["1352850","by"],["1352940","another"],["1353160","function,"],["1353440",""],["1353720","so"],["1353770","you"],["1353990","just"],["1354090","have"],["1354190","whatever"],["1354530","data"],["1354800","was"],["1354940","there."],["1355410",""],["1355900","What"],["1356100","if"],["1356180","you"],["1356290","tried"],["1356530","to"],["1356630","do"],["1356890","dereference"],["1357240",""],["1357590",""],["1357950","some"],["1358370","address"],["1358840","that"],["1358970","you"],["1359090","don't-"],["1359500",""],["1359830",""],["1360020",""],["1360280","there were"],["1360570","already"],["1360810","bytes"],["1361210","and"],["1361340","information"],["1361595",""],["1361850","in"],["1361980","there,"],["1362420","that's"],["1362690","now"],["1362910","in"],["1363040","your"],["1363160","pointer."],["1363410","If"],["1363500","you"],["1363570","try"],["1363710","and"],["1363870","dereference"],["1363930",""],["1364040",""],["1364420","that"],["1364620","pointer,"],["1364875",""],["1365130",""],["1365530",""],["1365930","you"],["1366070","might"],["1366240","be"],["1366340","messing"],["1366620",""],["1366900","with"],["1367020","some"],["1367140","memory"],["1367470","that"],["1367660","you"],["1367810","didn't"],["1368200","intend"],["1368530","to"],["1368600","mess"],["1368830","with"],["1368980","it"],["1369060","all."],["1369390","And"],["1369480","in"],["1369540","fact"],["1369740","you"],["1369860","could"],["1369970","do"],["1370060","something"],["1370340","really"],["1370590","devastating,"],["1370890",""],["1371190","like"],["1371460",""],["1371850",""],["1372240","break"],["1372570","another"],["1372840","program,"],["1373295",""],["1373750","or"],["1373930","break"],["1374230","another"],["1374460","function,"],["1374880","or"],["1374970","do"],["1375100","something"],["1375370",""],["1375640","malicious"],["1375986",""],["1376332","that"],["1376506","you"],["1376680","didn't"],["1377120","intend"],["1377480","to"],["1377570","do"],["1377750","at"],["1377800","all."],["1378100",""],["1378400","And"],["1378580","so"],["1378680","that's"],["1378900","why"],["1379020","it's"],["1379140","actually"],["1379450","a"],["1379490","good"],["1379690","idea"],["1380080","to"],["1380180","set"],["1380380","your"],["1380510","pointers"],["1380830","to"],["1380960","null"],["1381240",""],["1381520",""],["1381750","if"],["1381890","you"],["1382000","don't"],["1382230","set"],["1382400","them"],["1382540","to"],["1382610","something"],["1382960","meaningful."],["1383315",""],["1383670",""],["1384030","It's"],["1384210","probably"],["1384530",""],["1384850","better"],["1385310","at"],["1385390","the"],["1385550","end"],["1385750","of"],["1385830","the"],["1385950","day"],["1386200","for"],["1386310","your"],["1386440","program"],["1386760","to"],["1386890","crash"],["1387240",""],["1387590",""],["1387930","then"],["1388080","for"],["1388250","it"],["1388330","to"],["1388420","do"],["1388660","something"],["1389000","that"],["1389210","screws"],["1389660","up"],["1389840","another"],["1390255",""],["1390670","program"],["1390945",""],["1391220","or"],["1391340","another"],["1391580","function."],["1391875",""],["1392170",""],["1392400","That"],["1392660","behavior"],["1392960","is"],["1393060","probably"],["1393440","even"],["1393710","less"],["1394110","ideal"],["1394400",""],["1394690","than"],["1394840","just"],["1395120","crashing."],["1395390",""],["1395660","And"],["1395770","so"],["1395850","that's"],["1396080","why"],["1396190","it's"],["1396270","actually"],["1396490","a"],["1396530","good"],["1396730","habit"],["1397040","to"],["1397120","get"],["1397240","into"],["1397650",""],["1397930","to"],["1398090","set"],["1398290","your"],["1398450","pointers"],["1398870","to"],["1399000","null"],["1399315",""],["1399630",""],["1399920","if"],["1400110","you"],["1400260","don't"],["1400510","set"],["1400770","them"],["1400920","to"],["1401030",""],["1401510","a"],["1401620","meaningful"],["1401900",""],["1402180","value"],["1402640","immediately,"],["1403080","a"],["1403100","value"],["1403460","that"],["1403620","you"],["1403780","know"],["1404160",""],["1404540","and"],["1404710","that"],["1404770","you"],["1404830","can"],["1404960","safely"],["1405300",""],["1405640","the"],["1405780","dereference."],["1406095",""],["1406410",""],["1406835",""],["1407260","So"],["1407420","let's"],["1407810",""],["1408200","come"],["1408340","back"],["1408580","now"],["1408850","and"],["1408960","take"],["1409120","a"],["1409170","look"],["1409420","at"],["1409610","the"],["1409995",""],["1410380","overall"],["1410715",""],["1411050","syntax"],["1411350",""],["1411650","of"],["1411710","the"],["1411770","situation."],["1412240","If"],["1412320","I"],["1412440","say"],["1412920",""],["1413230","int"],["1413590","*p;,"],["1413855",""],["1414120",""],["1414600",""],["1415070",""],["1415380","what"],["1415690","have"],["1415880","I"],["1415990","just"],["1416310","done?"],["1416600",""],["1417000",""],["1417400","What"],["1417640","I've"],["1417720","done"],["1417870","is"],["1417980","this."],["1418255",""],["1418530","I"],["1418700","know"],["1418850","the"],["1419070","value"],["1419490","of"],["1419590","p"],["1419875",""],["1420160",""],["1420620","is"],["1420790","an"],["1420900","address"],["1421275",""],["1421650","because"],["1421830","all"],["1422210","pointers"],["1422530",""],["1422850","are"],["1423000","just"],["1423290","addresses."],["1423560",""],["1423830",""],["1424245",""],["1424660","I"],["1424770","can"],["1425070","dereference"],["1425340",""],["1425640",""],["1425940","p"],["1426230",""],["1426520","using"],["1426880","the"],["1426970","*"],["1427410","operator."],["1427750","In"],["1427820","this"],["1427980","context"],["1428400","here,"],["1428520","at"],["1428590","the"],["1428650","very"],["1428840","top"],["1429160","recall"],["1429610",""],["1429820","the"],["1429910","*"],["1430145","is"],["1430380","part"],["1430590","of"],["1430660","the"],["1430760","type."],["1431250","Int"],["1431490","*"],["1431745",""],["1432000","is"],["1432110","the"],["1432230","data"],["1432580","type."],["1432960",""],["1433235",""],["1433510","But"],["1433650","I"],["1433700","can"],["1433910","dereference"],["1434160",""],["1434650","p"],["1434930","using"],["1435210","the"],["1435290","*"],["1435740","operator,"],["1436150","and"],["1436270","if"],["1436410","I"],["1436500","do"],["1436800","so,"],["1437260",""],["1437690",""],["1438120","if"],["1438240","I"],["1438310","go"],["1438750","to"],["1438910","that"],["1439130","address,"],["1439460",""],["1439790",""],["1440030","what"],["1440220","will"],["1440380","I"],["1440470","find"],["1440810","at"],["1440910","that"],["1441010","address?"],["1441305",""],["1441600",""],["1441900","I"],["1441960","will"],["1442110","find"],["1442500","an"],["1442600","integer."],["1442855","So"],["1443110","int*p"],["1443260",""],["1443600",""],["1443830","is"],["1443910","basically"],["1444190","saying,"],["1444510",""],["1444750","p"],["1444950","is"],["1445050","an"],["1445140","address."],["1445640",""],["1445910","I"],["1446000","can"],["1446160","dereference"],["1446350",""],["1446750","p"],["1447040","and"],["1447150","if"],["1447270","I"],["1447360","do,"],["1447695",""],["1448030",""],["1448490","I"],["1448570","will"],["1448670","find"],["1448840","an"],["1449030","integer"],["1449500","at"],["1449760","that"],["1450160","memory"],["1450520","location."],["1450785",""],["1451050",""],["1451485",""],["1451920","OK"],["1452090","so"],["1452190","I"],["1452250","said"],["1452440","there"],["1452620","was"],["1452720","another"],["1452990","annoying"],["1453245",""],["1453500","thing"],["1453700","with"],["1453820","stars"],["1454260","and"],["1454340","here's"],["1454590","where"],["1454690","that"],["1454870","annoying"],["1455230","thing"],["1455400","with"],["1455520","stars"],["1455980","is."],["1456330",""],["1456695",""],["1457060","Have"],["1457190","you"],["1457260","ever"],["1457440","tried"],["1457670","to"],["1457740","declare"],["1458030",""],["1458320","multiple"],["1458620",""],["1458920","variables"],["1459290",""],["1459660","of"],["1459790","the"],["1459870","same"],["1460125",""],["1460380","type"],["1460680",""],["1460980",""],["1461310",""],["1461640","on"],["1461940","the"],["1462020","same"],["1462285",""],["1462550",""],["1462780","line"],["1463190","of"],["1463300","code?"],["1463760",""],["1464220",""],["1464680","So"],["1464910","for"],["1465070","a second,"],["1465325",""],["1465580","pretend"],["1465910","that"],["1466030","the"],["1466110","line,"],["1466440","the"],["1466540","code"],["1466770","I"],["1466810","actually"],["1467040","have"],["1467200","there"],["1467400","in"],["1467550","green"],["1467700","isn't"],["1467820",""],["1467900","there"],["1468120","and"],["1468173","it"],["1468226","just"],["1468280","says"],["1468550","int"],["1468820","x,y,z;."],["1469130",""],["1469440",""],["1469760",""],["1470230",""],["1470520",""],["1470860",""],["1471110",""],["1471390",""],["1471670",""],["1472050","What"],["1472150","that"],["1472260","would"],["1472380","do"],["1472530","is"],["1472630","actually"],["1472860","create"],["1473180","three"],["1473470","integer"],["1473850","variables"],["1474260","for"],["1474430","you,"],["1474550","one"],["1474760","called"],["1474980","x,"],["1475390","one"],["1475800","called"],["1476030","y,"],["1476300","and"],["1476460","one"],["1476630","called"],["1476780","z."],["1476930","It's"],["1477230","a"],["1477320","way"],["1477470","to"],["1477750","do"],["1477930","it"],["1478030","without"],["1478150","having"],["1478330","to"],["1478400",""],["1478750","split"],["1479060","onto"],["1479330","three"],["1479550","lines."],["1479835",""],["1480120",""],["1480583",""],["1481046",""],["1481510","Here's"],["1481730","where"],["1482060",""],["1482200","stars"],["1482580","get"],["1482680","annoying"],["1482970","again"],["1483260","though,"],["1483560",""],["1483890","because"],["1484260","the"],["1484350","*"],["1484750",""],["1485150",""],["1485610","is"],["1485740","actually"],["1486100","part"],["1486350","of"],["1486430","both"],["1486740","the"],["1486900","type"],["1487270","name"],["1487530",""],["1487790",""],["1488060",""],["1488330","and"],["1488655",""],["1488980","part"],["1489200","of"],["1489250","the"],["1489300","variable"],["1489760","name."],["1490090",""],["1490320","And"],["1490490","so"],["1490610","if"],["1490680","I"],["1490820","say"],["1491140","int"],["1491340","*px,py,pz,"],["1491750",""],["1492190",""],["1492490",""],["1492940",""],["1493290",""],["1493615",""],["1493940",""],["1494230","what"],["1494430","I"],["1494470","actually"],["1494790","get"],["1495040","is"],["1495180","a"],["1495260","pointer"],["1495515",""],["1495770","to"],["1495930","an"],["1496020","integer"],["1496430","called"],["1496710","px"],["1497110",""],["1497510",""],["1497780",""],["1498050","and"],["1498530","two"],["1498840","integers,"],["1499180",""],["1499520",""],["1499860","py"],["1500155",""],["1500450",""],["1500755",""],["1501060","and"],["1501220","pz."],["1501650","And"],["1501720","that's"],["1501900","probably"],["1502360","not"],["1502780",""],["1503060","what"],["1503220","we"],["1503320","want,"],["1503610","that's"],["1503990","not"],["1504180","good."],["1504480",""],["1504950","So"],["1505050","if"],["1505140","I"],["1505200","want"],["1505350","to"],["1505410","create"],["1505840","multiple"],["1506120",""],["1506400","pointers"],["1506710",""],["1507020","on"],["1507150","the"],["1507220","same"],["1507590","line,"],["1507885",""],["1508180",""],["1508500","of"],["1508640","the"],["1508700","same"],["1508920","type,"],["1509290","and"],["1509450","stars,"],["1509930",""],["1510370","what"],["1510500","I"],["1510600","actually"],["1510700","need"],["1510800","to"],["1510900","do"],["1511040","is"],["1511130","say"],["1511470","int"],["1511700","*pa,*pb,*pc."],["1512140",""],["1512460",""],["1512780",""],["1513210",""],["1513610",""],["1514020",""],["1514315",""],["1514610",""],["1514870",""],["1515130",""],["1515510",""],["1515940",""],["1516275",""],["1516610",""],["1516970",""],["1517330","Now"],["1517640","having"],["1517890","just"],["1518050","said"],["1518190","that"],["1518650","and"],["1519100","now"],["1519310","telling"],["1519600","you"],["1519740","this,"],["1520020",""],["1520300","you"],["1520500","probably"],["1520920","will"],["1521090","never"],["1521380","do"],["1521520","this."],["1521890",""],["1522350","And"],["1522810","it's"],["1523010","probably"],["1523300","a"],["1523360","good"],["1523620","thing"],["1523760","honestly,"],["1524050","because"],["1524230","you"],["1524300","might"],["1524500","inadvertently"],["1524835",""],["1525170","omit"],["1525530","a"],["1525590","star,"],["1525990","something"],["1526300","like"],["1526415","that."],["1526530","It's"],["1526610","probably"],["1526690",""],["1526783",""],["1526876","best"],["1526970","to"],["1527020","maybe"],["1527210","declare"],["1527530","pointers"],["1527930","on"],["1528080","individual"],["1528355",""],["1528630","lines,"],["1529030",""],["1529290","but"],["1529470","it's"],["1529550","just"],["1529690","another"],["1529910","one"],["1530020","of"],["1530060","those"],["1530300","annoying"],["1530800","syntax"],["1531060",""],["1531320","things"],["1531520","with"],["1531640","stars"],["1532070","that"],["1532200","make"],["1532450","pointers"],["1532840","so"],["1533100",""],["1533360","difficult"],["1533630",""],["1533900",""],["1534310","to"],["1534760","work"],["1535110","with."],["1535310","Because"],["1535730","it's"],["1536160",""],["1536590","just"],["1536780","this"],["1536870","syntactic"],["1537235",""],["1537600","mess"],["1537960","you"],["1538070","have"],["1538250","to"],["1538360","work"],["1538620","through."],["1538900",""],["1539190",""],["1539480","With"],["1539780","practice"],["1540240","it"],["1540360","does"],["1540560","really"],["1540720","become"],["1541000","second"],["1541310","nature."],["1541600","I"],["1541710","still"],["1541990","make"],["1542170","mistakes"],["1542550","with"],["1542730","it"],["1543140","still"],["1543440","after"],["1543600","programming"],["1543960","for"],["1544070","10"],["1544290","years,"],["1544690",""],["1545050",""],["1545410","so"],["1545720","don't"],["1546060",""],["1546280","be"],["1546410","upset"],["1546790","if"],["1547080","something"],["1547430","happens"],["1547810","to"],["1547870","you,"],["1548070","it's"],["1548260","pretty"],["1548480","common"],["1548810","honestly."],["1549300",""],["1549630","It's"],["1549810","really"],["1550030","kind"],["1550210","of"],["1550300","a"],["1550360","flaw"],["1550740","of"],["1550860","the"],["1550940","syntax."],["1551280",""],["1551620",""],["1552030",""],["1552440",""],["1552850","OK"],["1553070","so"],["1553430","I"],["1553530","kind"],["1553760","of"],["1553830","promised"],["1554230","that"],["1554310","we"],["1554390","would"],["1554470","revisit"],["1554900","the"],["1554990","concept"],["1555300",""],["1555610",""],["1556010","of"],["1556300","how"],["1556643",""],["1556986",""],["1557330","large"],["1557760","is"],["1557850","a"],["1557900","string."],["1558265",""],["1558630",""],["1559000",""],["1559370","Well"],["1559675",""],["1559980","if"],["1560120","I"],["1560200","told"],["1560590","you"],["1561030","that"],["1561290","a"],["1561350","string,"],["1561730",""],["1562110","we've"],["1562240","really"],["1562480","kind"],["1562670","of"],["1562750","been"],["1562890","lying"],["1563320","to"],["1563395","you"],["1563470","the"],["1563560","whole"],["1563820","time."],["1564140","There's"],["1564310","no"],["1564490","data"],["1564770","type"],["1564990","called"],["1565250","string,"],["1565580","and"],["1565650","in"],["1565740","fact"],["1565950","I"],["1565980","mentioned"],["1566330","this"],["1566750","in"],["1566900",""],["1567080",""],["1567380","one"],["1567530","of"],["1567620","our"],["1567700","earliest"],["1568050","videos"],["1568390","on"],["1568560","data"],["1568850","types,"],["1569310",""],["1569730","that"],["1569920","string"],["1570320","was"],["1570470","a"],["1570560","data"],["1570850","type"],["1571070","that"],["1571140","was"],["1571270","created"],["1571770","for"],["1572010","you"],["1572330",""],["1572690","in"],["1572965",""],["1573240","CS50.h."],["1573420",""],["1573600",""],["1573820","You"],["1573900","have"],["1574120","to"],["1574210","#include"],["1574535",""],["1574860","CS50.h"],["1575200",""],["1575290",""],["1575450",""],["1575700","in"],["1575770","order"],["1575920","to"],["1575970","use"],["1576270","it."],["1576550",""],["1577050","Well"],["1577190","string"],["1577460",""],["1577730","is"],["1577850","really"],["1578170","just"],["1578350","an"],["1578500","alias"],["1578930","for"],["1579020","something"],["1579250","called"],["1579430","the"],["1579520","char"],["1579880","*,"],["1580275",""],["1580670",""],["1580940","a"],["1581080","pointer"],["1581415",""],["1581750",""],["1581970","to"],["1582410","a"],["1582490","character."],["1582875",""],["1583260",""],["1583600","Well"],["1583850","pointers,"],["1584135",""],["1584420","recall,"],["1584850","are"],["1585010","just"],["1585360","addresses."],["1585685",""],["1586010","So"],["1586030","what"],["1586190","is"],["1586280","the"],["1586380","size"],["1586860","in"],["1587050","bytes"],["1587375",""],["1587700","of"],["1587840","a"],["1587900","string?"],["1588180",""],["1588460",""],["1588780","Well"],["1588945","it's"],["1589110","four"],["1589590","or"],["1589810","eight."],["1590070","And"],["1590160","the"],["1590220","reason"],["1590380","I"],["1590440","say"],["1590590","four"],["1590855",""],["1591120","or"],["1591310","eight"],["1591510","is"],["1591630","because"],["1591780","it"],["1591910","actually"],["1592170","depends"],["1592480","on"],["1592560","the"],["1592620","system,"],["1593080","If"],["1593135","you're"],["1593190","using"],["1593440","CS50"],["1593710",""],["1593980","ide,"],["1594250",""],["1594525",""],["1594800",""],["1595280","char"],["1595560","*"],["1595940","is"],["1596000","the"],["1596090","size"],["1596410","of"],["1596480","a"],["1596530","char"],["1596730","*"],["1597050","is"],["1597260","eight,"],["1597407","it's"],["1597555","a"],["1597703","64-bit"],["1598146",""],["1598590",""],["1598860","system."],["1599340","Every"],["1599730","address"],["1600140",""],["1600550",""],["1600910","in"],["1601020","memory"],["1601420","is"],["1601540","64"],["1601985",""],["1602430","bits"],["1602730",""],["1603030","long."],["1603470",""],["1603850","If"],["1604080","you're"],["1604285","using"],["1604490","CS50"],["1604980","appliance"],["1605285",""],["1605590","or"],["1605700","using"],["1606070","any"],["1606290","32-bit"],["1606710",""],["1607130","machine,"],["1607610",""],["1607940",""],["1608270","and"],["1608370","you've"],["1608450","heard"],["1608580","that"],["1608760","term"],["1608950","32-bit"],["1609265",""],["1609580","machine,"],["1609870","what"],["1609980","is"],["1610050","a"],["1610120","32-bit"],["1610455",""],["1610790","machine?"],["1611045",""],["1611300",""],["1611640","Well"],["1611850","it"],["1611930","just"],["1612010","means"],["1612270","that"],["1612450","every"],["1612860","address"],["1613260","in"],["1613380","memory"],["1613645",""],["1613910",""],["1614220","is"],["1614510","32"],["1614875",""],["1615240","bits"],["1615670","long."],["1616090","And"],["1616240","so"],["1616740","32"],["1617160","bits"],["1617510","is"],["1617950","four"],["1618420","bytes."],["1618780",""],["1619140","So"],["1619200","a"],["1619270","char"],["1619600","*"],["1619920",""],["1620240",""],["1620490","is"],["1620760","four"],["1621025",""],["1621290","or"],["1621460","eight"],["1621670","bytes"],["1621900","depending"],["1622210","on"],["1622270","your"],["1622380","system."],["1622710","And"],["1622780","indeed"],["1623270",""],["1623490","any"],["1623830","data"],["1624130","types,"],["1624460",""],["1624790","and"],["1624980","a"],["1625050","pointer"],["1625420","to"],["1625540","any"],["1625830","data"],["1626100","type,"],["1626470",""],["1626760","since"],["1626910","all"],["1627130","pointers"],["1627480","are"],["1627560","just"],["1627760","addresses,"],["1628065",""],["1628370",""],["1628590","are"],["1628770","four"],["1629205",""],["1629640","or"],["1630005",""],["1630370","eight"],["1630840","bytes."],["1631110",""],["1631380",""],["1631716",""],["1632052",""],["1632390","So"],["1632400","let's"],["1632540","revisit"],["1632840","this"],["1633020","diagram"],["1633290","and"],["1633560","let's"],["1633740","conclude"],["1634030","this"],["1634170","video"],["1634460","with"],["1634780",""],["1635190","a"],["1635260","little"],["1635710",""],["1636050",""],["1636390",""],["1636730","exercise"],["1637000",""],["1637270","here."],["1637560",""],["1637845",""],["1638130","So"],["1638540","here's"],["1638780","the"],["1638900","diagram"],["1639280","we"],["1639400","left"],["1639700","off"],["1639940","with"],["1640340","at"],["1640470","the"],["1640540","very"],["1640740","beginning"],["1641170","of"],["1641250","the"],["1641310","video."],["1641600","So"],["1641750","what"],["1641880","happens"],["1642250","now"],["1642450","if"],["1642540","I"],["1642610","say"],["1642820","*pk=35?"],["1643110",""],["1643400",""],["1643700",""],["1644000",""],["1644390",""],["1644810",""],["1645230",""],["1645610",""],["1645990",""],["1646370","So"],["1646420",""],["1646580",""],["1646970","what"],["1647070","does"],["1647170","it"],["1647190","mean"],["1647390","when"],["1647480","I"],["1647560","say,"],["1647780","*pk=35?"],["1648105",""],["1648430",""],["1648825",""],["1649220",""],["1649690",""],["1650110",""],["1650530","Take"],["1650670","a"],["1650810","second."],["1651160",""],["1651580",""],["1652000",""],["1652420","*pk."],["1652700",""],["1652980",""],["1653275",""],["1653570",""],["1654043",""],["1654516",""],["1654990","In"],["1655130","context"],["1655440",""],["1655750","here,"],["1656100","*"],["1656436",""],["1656772",""],["1657110","is"],["1657410",""],["1657710",""],["1658040","dereference"],["1658240",""],["1658515",""],["1658790","operator."],["1659050",""],["1659310",""],["1659600",""],["1659890","So"],["1660210","when"],["1660470","the"],["1660560","dereference"],["1660830",""],["1661100","operator"],["1661232","is"],["1661365",""],["1661630","used,"],["1662110","we"],["1662500","go"],["1662960","to"],["1663280","the"],["1663490","address"],["1663935",""],["1664380",""],["1664760","pointed"],["1665140","to"],["1665290","by"],["1665450","pk,"],["1665830",""],["1666210","and"],["1666590","we"],["1666730","change"],["1667005",""],["1667280","what"],["1667460","we"],["1667600","find."],["1667880",""],["1668160",""],["1668520","So"],["1668690","*pk=35"],["1669190",""],["1669680",""],["1670060",""],["1670490",""],["1670920",""],["1671130","effectively"],["1671425",""],["1671720","does"],["1672130","this"],["1672415",""],["1672700",""],["1673110","to"],["1673430",""],["1673750","the"],["1673860","picture."],["1674330",""],["1674800",""],["1675270","So"],["1675430","it's"],["1675580","basically"],["1675940","syntactically"],["1676215",""],["1676490","identical"],["1676870","to"],["1676970","of"],["1677060","having"],["1677370","said"],["1677770","k=35."],["1678110",""],["1678445",""],["1678780",""],["1679205",""],["1679630",""],["1680000",""],["1680370",""],["1680740","One"],["1680900","more."],["1681260",""],["1681595",""],["1681930","If"],["1682070","I"],["1682160","say"],["1682500","int"],["1682890","m,"],["1683310",""],["1683745",""],["1684180","I"],["1684280","create"],["1684540","a"],["1684570","new"],["1684720","variable"],["1684990",""],["1685260","called"],["1685530","m."],["1685960","A"],["1686113","new"],["1686266","box,"],["1686420","it's"],["1686600","a"],["1686650","green"],["1686880","box"],["1687220","because"],["1687305","it's"],["1687390","going"],["1687490","to"],["1687530","hold"],["1687720","an"],["1687820","integer,"],["1688260","and it's"],["1688470","labeled"],["1688820","m."],["1689140",""],["1689490",""],["1689840","If"],["1689960","I"],["1690030","say"],["1690280","m=4,"],["1690460",""],["1690780",""],["1691110",""],["1691440",""],["1691755",""],["1692070","I"],["1692170","put"],["1692350","an"],["1692440","integer"],["1692840","into"],["1693040",""],["1693540","that"],["1693800","box."],["1694075",""],["1694350",""],["1694655",""],["1694960","If"],["1695040","say"],["1695170",""],["1695260","pk=&m,"],["1695545",""],["1695830",""],["1696180",""],["1696570",""],["1696960",""],["1697250",""],["1697460",""],["1697690",""],["1697930","how"],["1698130","does"],["1698290","this"],["1698450","diagram"],["1698735",""],["1699020","change?"],["1699445",""],["1699870",""],["1700290","Pk=&m,"],["1700685",""],["1701080",""],["1701470",""],["1701815",""],["1702160",""],["1702610",""],["1703060",""],["1703480","do"],["1703555","you"],["1703630","recall"],["1703910","what"],["1703990","the"],["1704200","&"],["1704655",""],["1705110","operator"],["1705440",""],["1705770",""],["1706070","does"],["1706430","or"],["1706500","is"],["1706640","called?"],["1706900",""],["1707160",""],["1707560",""],["1707960",""],["1708360",""],["1708760","Remember"],["1709010","that"],["1709290","&"],["1709700",""],["1710110",""],["1710450","some"],["1710710","variable"],["1711110","name"],["1711390",""],["1711670","is"],["1712020","the"],["1712270","address"],["1712745",""],["1713220","of"],["1713520","a"],["1713610","variable"],["1714110","name."],["1714430","So"],["1714475","what"],["1714520","we're"],["1714610","saying"],["1714950","is"],["1715120","pk"],["1715510",""],["1715900",""],["1716180","gets"],["1716460","the"],["1716630","address"],["1717070",""],["1717510",""],["1717780","of"],["1718010","m."],["1718340",""],["1718740","And"],["1718920","so"],["1719030","effectively"],["1719490","what"],["1719590","happens"],["1719960","the"],["1720070","diagram"],["1720570","is"],["1720650","that"],["1720760","pk"],["1721020",""],["1721150","no"],["1721340","longer"],["1721670","points"],["1722010","to"],["1722180","k,"],["1722475",""],["1722770",""],["1723255",""],["1723740","but"],["1723900","points"],["1724210","to"],["1724310","m."],["1724730",""],["1725152",""],["1725574",""],["1725996",""],["1726420","Again"],["1726720","pointers"],["1727120","are"],["1727200","very"],["1727510","tricky"],["1727850","to"],["1727940","work"],["1728250","with"],["1728470","and"],["1728570","they"],["1728650","take"],["1728850","a"],["1728920","lot"],["1729140","of"],["1729260","practice,"],["1729635",""],["1730010","but"],["1730250","because"],["1730620","of"],["1730720","their"],["1730870","ability"],["1731280","to"],["1731410","allow"],["1731730","you"],["1731850","to"],["1731930","pass"],["1732400","data"],["1732720","between"],["1733200","functions"],["1733560",""],["1733920",""],["1734150","and"],["1734430","actually"],["1734910","have"],["1735220","those"],["1735400","changes"],["1735860","take"],["1736200","effect,"],["1736545",""],["1736890",""],["1737190","getting"],["1737410","your"],["1737520","head"],["1737690","around"],["1737990","is"],["1738080","really"],["1738360","important."],["1738820","It"],["1738980","probably"],["1739380","is"],["1739480","the"],["1739560","most"],["1739810","complicated"],["1740090",""],["1740370","topic"],["1740730","we"],["1740840","discuss"],["1741110",""],["1741380","in"],["1741595","CS50,"],["1741810",""],["1742250",""],["1742590","but"],["1742970",""],["1743330",""],["1743600",""],["1743720","the"],["1743850","value"],["1744280","that"],["1744420","you"],["1744530","get"],["1744800",""],["1745070","from"],["1745250","using"],["1745550","pointers"],["1745910","far"],["1746270","outweighs"],["1746630","the"],["1746720","complications"],["1747090",""],["1747460","that"],["1747560","come"],["1747940","from"],["1748170","learning"],["1748520","them."],["1748760",""],["1749200","So"],["1749290","I"],["1749320","wish"],["1749510","you"],["1749580","the"],["1749670","best"],["1749970","of"],["1750070","luck"],["1750345",""],["1750620","learning"],["1750940","about"],["1751180","pointers."],["1751435",""],["1751690",""],["1752190",""],["1752690","I'm"],["1752880","Doug"],["1753090","Lloyd,"],["1753500",""],["1753800","this"],["1754100","is"],["1754210","CS50."],["1754510",""],["1754810",""],["1755110",""],["1755410",""],["1755710",""],["1756010",""],["1756310",""],["1756610",""],["1756910",""],["1757210",""]],"paragraphs":[0,6030,35490,83180,119270,153710,196050,233350,255080,282550,312990,349930,404350,458850,508870,541100,565540,606020,654760,690120,760780,798450,822360,891320,940260,971200,1013300,1049270,1085960,1144750,1207040,1243000,1281570,1315290,1355900,1407260,1451920,1481510,1504950,1552850,1577050,1632390,1680740,1726420],"speakers":{"6030":"DOUG LLOYD"}}