1 / 6

CSC 253

CSC 253. Lecture 7. Storage Classes. Of the following storage class modifiers, extern auto register const volatile static which are in some sense “opposites”? which of them are mutually exclusive?. static variables. Let’s write a program that demonstrates what a static variable does.

Télécharger la présentation

CSC 253

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CSC 253 Lecture 7

  2. Storage Classes • Of the following storage class modifiers, • extern auto • register const • volatile static • which are in some sense “opposites”? • which of them are mutually exclusive?

  3. static variables • Let’s write a program that demonstrates what a static variable does. • What are some uses of static variables?

  4. Let’s try a program with externs • Declare int i in one file. • Declare int j in another file. • Declare one function in each of the two files. • What do we need to do to use all the variables and functions from a single main()? • What happens if we make them static? • Why?

  5. Common errors • Let’s write programs demonstrating these … • Same name, different type • this would occur if you used extern to declare a variable, but • then gave it a different type than its original declaration. • Multiple different definitions of the same function with external scope.

  6. Variable # of arguments Let’s write a sum function that takes a variable number of arguments.

More Related