<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://pa8mm.net/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://pa8mm.net/feed.php">
        <title>pa8mm.net - embedded</title>
        <description></description>
        <link>http://pa8mm.net/</link>
        <image rdf:resource="http://pa8mm.net/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-07-12T13:28:10+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://pa8mm.net/doku.php?id=embedded:c&amp;rev=1772802960&amp;do=diff"/>
                <rdf:li rdf:resource="http://pa8mm.net/doku.php?id=embedded:c_arrays&amp;rev=1772802883&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://pa8mm.net/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>pa8mm.net</title>
        <link>http://pa8mm.net/</link>
        <url>http://pa8mm.net/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="http://pa8mm.net/doku.php?id=embedded:c&amp;rev=1772802960&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T13:16:00+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>c</title>
        <link>http://pa8mm.net/doku.php?id=embedded:c&amp;rev=1772802960&amp;do=diff</link>
        <description>C

VARIABLES

	*  char - 1 byte - is used to store a single character (ASCII) value


char Temp;    // Variable definition or declaration (letting compiler know we will need it in the future)
Temp = 25;    // Variable initialisation (assigning a value)
extern int my_var // Declaration. It tells the compiler that my_var is defined outside this file</description>
    </item>
    <item rdf:about="http://pa8mm.net/doku.php?id=embedded:c_arrays&amp;rev=1772802883&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-03-06T13:14:43+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>c_arrays</title>
        <link>http://pa8mm.net/doku.php?id=embedded:c_arrays&amp;rev=1772802883&amp;do=diff</link>
        <description>ARRAYS

SYNTAX


uint8_t studentsAge[100]; // 100 elements in the array


Things to note:

	*  studentAge is a base pointer to a 100 data items of type uint8_t
	*  Data type of studentAge is uint8_t*
	*  Data type of the items stored is uint8_t

Since array&#039;s name is just a base pointer, you can access N&#039;s element by incrementing a pointer and then dereferencing it. Example accessing 1st element (studentsAge[1]):</description>
    </item>
</rdf:RDF>
