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.

66 lines
1.8 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Structs in C | tait.tech</title>
<link rel="stylesheet" href="/assets/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Tait Hoyem">
<meta name="keywords" content="">
<meta name="description" content="">
</head>
<body>
<div id="wrapper">
<header>
<h1>tait.tech</h1>
<nav>
<a href="/" class="nav-link" >Home</a>
<a href="/blog/" class="nav-link" >Blog</a>
<a href="/ideas/" class="nav-link" >Ideas</a>
<a href="/links/" class="nav-link" >Links</a>
<a href="https://github.com/TTWNO/" class="nav-link" target="_blank" rel="noopener noreferrer" >Github</a>
</nav>
</header>
<main>
<h1>Structs in C, an Emacspeak Tutorial</h1>
<p>Structs are a way of grouping related data together.
Think of a struct the same way your would any other noun.
They often have many individual attributes that combine to make that thing.
For example, a student may have a first name, last name, student ID, GPA, list of classes, etc.
In this tutorial I use a very trimmed down version of what a structure generally contains to make the point without overwhelming you.</p>
<p>Hopefully it helps. Let me know about any improvements.</p>
<ul class="clear-list">
<li>
<p>YouTube video: <a href="https://youtu.be/SaUnC_Ofysw">Structs in C</a>
</li>
<li>
<p>Resources: <a href="/assets/emacspeak-tutorials/structs.zip">Structs in C zip</a>
</li>
<li>
<p>Other Emacspeak C tutorials <a href="/emacspeak-tutorials">Emacspeak Tutorials List</a></p>
</ul>
</main>
<hr>
<footer>
This page will be mirrored on <a href="https://beta.tait.tech/emacspeak-tutorials/structs/">beta.tait.tech</a>.
</footer>
</div>
</body>
</html>