You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

57 lines
3.8 KiB

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Learning Website</title>
<link href="/styles/styles.css" rel="stylesheet" type="text/css">
<link href="/programming/styles/styles.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="banner">
<h1 class="courselink">C / C++ Links</h1>
<h2 class="lecturer">Links to LinkedIn Courses, online documentation, tutorials and so on.</h2>
</div>
<article>
<h2 class="sectiontitle">LinkedIn Courses</h2>
<p>LEARNING PATH: <a href="https://www.linkedin.com/learning/paths/become-a-c-plus-plus-developer">Become a C++ Developer</a>, 8 courses and 19 hours of video, probably a good basic grounding in C++.</p>
<p>LEARNING PATH: <a href="https://www.linkedin.com/learning/paths/advance-your-skills-in-c-plus-plus">Advance Your Skills in C++</a>, 8 courses and almost 24 hours of video, this actually includes 3 courses covered in the Become a C++ Developer Learning Path so if you do that Path first, you can cover this path with 5 courses and around 12 hours of video.</p>
<p>COURSE: <a href="https://www.linkedin.com/learning/c-essential-trainingg">C Essential Training</a>, it can be quite difficult to pick C courses because of the number available and also because courses tend to be more geared towards C++ or C# which tend to be more popular nowadays but this one looks like an interesting course. The lecturer is Dan Gookin, the author of C for Dummies which is one of the first programming books I ever bought.</p>
<p>COURSE: <a href="https://www.linkedin.com/learning/advanced-c-programming">Advanced C Programming</a>, also a Dan Gookin course, covering more advanced topics</p>
<p>COURSE: <a href="https://www.linkedin.com/learning/master-c-language-pointers">Mastering C Language Pointers</a>, this is also a Dan Gookin course covering some more advanced topics.</p>
<p>COURSES: This is a list of courses hosted by <a href="https://www.linkedin.com/learning/instructors/dan-gookin">Dan Gookin</a> who seems to be the go-to person for C courses on LinkedIn Learning. These are mostly C courses, including the two linked to above but there are also courses on PC Maintenance, Troubleshooting and a few others.</p>
<h2 class="sectiontitle">Documentation</h2>
<p>Arguably, the best references for C (and maybe C++ as well but probably not C#) is available in book form rather than online. That being said, there are lost of online resources relating to C including a C language reference at <a href="https://en.cppreference.com/w/c/language">cppreference.com</a> which, in spite of the name, is a reference for the C language, not C++. It does also have a <a href="https://en.cppreference.com/w/cpp/language">C++ Language Reference</a>.</p>
</article>
<div class="btngroup">
<button class="button" onclick="window.location.href='pythonlinks.html';">
PYTHON
</button>
<button class="button" onclick="window.location.href='perllinks.html';">
PERL
</button>
<button class="button" onclick="window.location.href='javalinks.html'">
JAVA
</button>
<button class="button" onclick="window.location.href='clinks.html'">
C / C++
</button>
<button class="button" onclick="window.location.href='/programming/programming.html'">
Programming Page
</button>
<button class="button" onclick="window.location.href='/index.html'">
Home
</button>
</div>
</body>
</html>