No cover art

[TutorialPace.com] [LINKEDIN LEARNING] C Essential Training 1 The Basics - [TP]

Size
377 MB
Seeders
0
Leechers
2
Files
65
Category
Added
05/17/19 at 12:32am GMT+1
Infohash
dd82c444efd13aa7af8c077c662c9b85b614d4e6

Description
C has been around for nearly half a century, but it's still as essential as ever. This powerful language lies at the heart of many modern languages—including JavaScript and Objective-C—and is an up-and-coming language for embedded systems. Whether you're taking your very first steps into programming with C, or you just want to brush up on the basics, this course can help to acquaint you with the fundamentals of this mid-level programming language. Instructor Dan Gookin dissects the anatomy of C, from data types and variables to simple functions. Plus, he shows how these basic elements fit together in control structures like loops—where the real logic behind your code comes into play.

Stream C Essential Training 1 The Basics Course Online

File list
  • [TutorialPace.com] [LINKEDIN LEARNING] C Essential Training 1 The Basics - [TP]
  • 01-Introduction/01.Start.your.C.essential.training.mp4 3.7 MB
  • 01-Introduction/02.Using.the.exercise.files.mp4 3.3 MB
  • 01-Introduction/03.Obtaining.and.configuring.the.IDE.mp4 11.1 MB
  • 02-The.Fundamentals.of.C/01.Getting.into.the.C.language.mp4 6.6 MB
  • 02-The.Fundamentals.of.C/02.Working.the.C.development.cycle.mp4 6.9 MB
  • 02-The.Fundamentals.of.C/03.Writing.a.simple.program.mp4 7.3 MB
  • 02-The.Fundamentals.of.C/04.Challenge.-.Write.your.own.code.mp4 2.3 MB
  • 02-The.Fundamentals.of.C/05.Solution.-.Write.your.own.code.mp4 3.5 MB
  • 02-The.Fundamentals.of.C/06.Reviewing.code.structure.mp4 7.2 MB
  • 02-The.Fundamentals.of.C/07.Exploring.the.preprocessor.mp4 6.5 MB
  • 02-The.Fundamentals.of.C/08.Understanding.header.files.and.libraries.mp4 9.9 MB
  • 02-The.Fundamentals.of.C/09.Adding.comments.mp4 6.8 MB
  • 02-The.Fundamentals.of.C/10.Challenge.-.Comment.code.mp4 2 MB
  • 02-The.Fundamentals.of.C/11.Solution.-.Comment.code.mp4 3 MB
  • 03-Variables.and.Operators/01.Understanding.C.language.data.types.mp4 7 MB
  • 03-Variables.and.Operators/02.Using.constants.mp4 11.3 MB
  • 03-Variables.and.Operators/03.Declaring.variables.mp4 5 MB
  • 03-Variables.and.Operators/04.Working.with.variables.mp4 6.7 MB
  • 03-Variables.and.Operators/05.Challenge.-.Make.variables.and.constants.mp4 2.3 MB
  • 03-Variables.and.Operators/06.Solution.-.Make.variables.and.constants.mp4 2.5 MB
  • 03-Variables.and.Operators/07.Understanding.variable.scope.mp4 12 MB
  • 03-Variables.and.Operators/08.Making.new.variables.mp4 7.2 MB
  • 03-Variables.and.Operators/09.Using.typedef.with.structures.mp4 4.9 MB
  • 03-Variables.and.Operators/10.Specifying.characters.and.strings.mp4 4 MB
  • 03-Variables.and.Operators/11.Specifying.integers.and.real.numbers.mp4 7.1 MB
  • 03-Variables.and.Operators/12.Typecasting.a.variable.mp4 6.8 MB
  • 03-Variables.and.Operators/13.Working.with.math.operators.mp4 3.2 MB
  • 03-Variables.and.Operators/14.Putting.math.operators.to.work.mp4 8.1 MB
  • 03-Variables.and.Operators/15.Challenge.-.Do.some.math.mp4 2.7 MB
  • 03-Variables.and.Operators/16.Solution.-.Do.some.math.mp4 3.3 MB
  • 03-Variables.and.Operators/17.Using.assignment.operators.mp4 4.1 MB
  • 03-Variables.and.Operators/18.Obeying.the.order.of.precedence.mp4 4.8 MB
  • 03-Variables.and.Operators/19.Challenge.-.Get.the.order.correct.mp4 3.5 MB
  • 03-Variables.and.Operators/20.Solution.-.Get.the.order.correct.mp4 2.1 MB
  • 03-Variables.and.Operators/21.Working.with.relational.operators.mp4 9.1 MB
  • 03-Variables.and.Operators/22.Using.logical.operators.mp4 8.5 MB
  • 03-Variables.and.Operators/23.Understanding.bitwise.operators.mp4 8 MB
  • 03-Variables.and.Operators/24.Shifting.bits.mp4 6.7 MB
  • 03-Variables.and.Operators/25.Exploring.unary.operators.mp4 7.3 MB
  • 04-Decisions.and.Loops/01.Making.a.decision.mp4 8.3 MB
  • 04-Decisions.and.Loops/02.Exploring.the.possibilities.mp4 9.4 MB
  • 04-Decisions.and.Loops/03.Challenge.-.Select.an.item.mp4 3.2 MB
  • 04-Decisions.and.Loops/04.Solution.-.Select.an.item.mp4 2.2 MB
  • 04-Decisions.and.Loops/05.Using.the.ternary.operator.mp4 6.1 MB
  • 04-Decisions.and.Loops/06.Working.with.the.switch-case.structure.mp4 9.5 MB
  • 04-Decisions.and.Loops/07.Creating.a.for.loop.mp4 9.1 MB
  • 04-Decisions.and.Loops/08.Setting.up.a.while.loop.mp4 8.5 MB
  • 04-Decisions.and.Loops/09.Challenge.-.Repeat.some.text.mp4 3 MB
  • 04-Decisions.and.Loops/10.Solution.-.Repeat.some.text.mp4 3.8 MB
  • 04-Decisions.and.Loops/11.Nesting.loops.mp4 4.5 MB
  • 04-Decisions.and.Loops/12.Breaking.out.of.a.loop.mp4 8.7 MB
  • 04-Decisions.and.Loops/13.Avoiding.the.goto.keyword.mp4 4.2 MB
  • 05-Functions/01.Understanding.functions.mp4 8.2 MB
  • 05-Functions/02.Prototyping.a.function.mp4 7 MB
  • 05-Functions/03.Challenge.-.Writing.a.function.mp4 2.5 MB
  • 05-Functions/04.Solution.-.Writing.a.function.mp4 3 MB
  • 05-Functions/05.Returning.a.value.from.a.function.mp4 5.2 MB
  • 05-Functions/06.Challenge.-.Returning.a.value.mp4 2.6 MB
  • 05-Functions/07.Solution.-.Returning.a.value.mp4 4.3 MB
  • 05-Functions/08.Passing.arguments.to.a.function.mp4 5.8 MB
  • 05-Functions/09.Challenge.-.Passing.values.mp4 2.2 MB
  • 05-Functions/10.Solution.-.Passing.values.mp4 3.6 MB
  • 05-Functions/11.Retaining.values.in.a.function.mp4 8 MB
  • 05-Functions/12.Creating.recursive.functions.mp4 11.5 MB
  • 06-Conclusion/01.Next.steps.mp4 4.3 MB

Rating
Not rated yet
Log in to rate

Comments

No comments yet.


Similar torrents
NameSizeDate
460 MB05/24/1910
103 MB05/13/1902
377 MB05/17/1902
353 MB05/17/1902
166 MB05/18/1901
1.2 GB05/18/1901
137 MB05/18/1902
180 MB05/18/1901
530 MB05/18/1901
340 MB05/18/1901
431 MB05/18/1901
266 MB05/18/1901
329 MB05/19/1901
494 MB05/21/1901
804 MB05/21/1901