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.
43 lines
2.1 KiB
43 lines
2.1 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">Learning C++</h1> |
|
<h2 class="lecturer">LinkedIn Learning : Eduardo Corpeño</h2> |
|
</div> |
|
|
|
<article class="contents-article"> |
|
<h3 class="subsectiontitle">Note</h3> |
|
<p>This course is really just a refresher for me because I have done some C/C++ programming with the Open University in the past and although this was more than 20 years ago, I have more recently studied Java both as part of a BSc and an MSc in Computing.</p> |
|
<p>The notes on the course are therefore going to be very short and I may well skip over some important concepts that I am already familar with.</p> |
|
|
|
<section class="main_grid"> |
|
<div><a class="tile" href="gettingstarted.html">Chapter 1 - Getting Started</a></div> |
|
<div><a class="tile" href="types.html">Chapter 2 - Data Types</a></div> |
|
<div><a class="tile" href="structures.html">Chapter 3 - Structures, Classes and Pointers</a></div> |
|
<div><a class="tile" href="flow.html">Chapter 4 - Control Flow</a></div> |
|
<div><a class="tile" href="functions.html">Chapter 5 - Functions</a></div> |
|
<div><a class="tile" href="fileio.html">Chapter 6 - File I/O</a></div> |
|
<div><a class="tile" href="conclusion.html">Chapter 7 - Conclusion</a></div> |
|
<div><a class="tile" href="/programming/programming.html">Programming Page</a></div> |
|
<div><a class="tile" href="/index.html">Home</a></div> |
|
</section> |
|
</article> |
|
|
|
</body> |
|
</html>
|
|
|