Computer Programming - 10.1 to 10.7

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/5

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

6 Terms

1
New cards

Describe the template for defining structures

struct structName {

            varType varName;

};

<p>struct structName {</p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; varType varName;</p><p>};</p>
2
New cards

Describe self-referential structures

knowt flashcard image
3
New cards

Describe the defining of variables of structure types

struct structureName varName;

struct structureName arrName;

<p>struct structureName varName;</p><p>struct structureName arrName;</p>
4
New cards

Describe the initialization of structures

knowt flashcard image
5
New cards

Describe how to access the variables of structures and their pointer objects

knowt flashcard image
6
New cards

Describe the use of typedef

knowt flashcard image