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.

64 lines
1.7 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Functions 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>Functions in C, an Emacspeak Tutorial</h1>
<p>Functions allow us to modularize our programs into many small parts.
Of course if we need to do something once at the start of our program, and once again at the end,
it will be rather inconvenient to copy and paste all our code all the time.</p>
<p>Hope everything makes sense. If not, let me know.</p>
<ul class="clear-list">
<li>
<p>YouTube video: <a href="https://youtu.be/UV-xmgS3qhc">Functions in C</a>
</li>
<li>
<p>Resources: <a href="/assets/emacspeak-tutorials/functions.zip">Functions 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 is mirrored on <a href="https://beta.tait.tech/emacspeak-tutorials/functions/">beta.tait.tech</a>.
</footer>
</div>
</body>
</html>