Scope modifiers: Difference between revisions

Content deleted Content added
→‎{{header|Common Lisp}}: Add example using (declaim (special *bug*)).
Underscore (talk | contribs)
m →‎{{header|C}}: "it's value" → "its value"
Line 79:
int myp; // this can be seen only from inside code
static int myc; // still a variable that can be seen only from
// inside code, but it'sits value will be kept
// among different code calls: it is not about
// changing scope in this case!