recategorized by
1,275 views
4 votes
4 votes

An external variable

  1. is globally accessible by all functions
  2. has a declaration “extern” associated with it when declared within a function
  3. will be initialized to $0$ if not initialized
  4. all of these
recategorized by

1 Answer

Answer:

Related questions

2 votes
2 votes
1 answer
1
admin asked Apr 2, 2020
1,909 views
If initialization is a part of declaration of a structure, then storage class can beautomaticregisterstaticanything
2 votes
2 votes
1 answer
2
admin asked Apr 2, 2020
854 views
For $x$ and $y$ are variables as declared below $\textit{double }x=0.005, \: y = – 0.01;$ What is the value of $\text{ceil }(x+y)$, where $\text{ceil }$ is a function t...
1 votes
1 votes
3 answers
3
admin asked Apr 2, 2020
1,117 views
In C programming language, if the first and the second operands of operator $+$ are of types int and float, respectively, the result will be of type intfloatcharlong int
1 votes
1 votes
1 answer
4
admin asked Apr 2, 2020
1,345 views
What will be the value of $x$ and $y$ after execution of the following statement(C language) n = 5; x = n++; y = -x;$5,-4$$6,-5$$6,-6$$5,-5$