Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
If this is a complete translation unit, what can be said about the variable "MaxEntries"?
const int MaxEntries = 10;
extern int entries[MaxEntries];
If this is a complete translation unit, what can be said about the variable "MaxEntries"?
1) It can only be used within the translation unit shown in the sample.
2) It cannot be used as a case value in a switch statement.
3) It becomes accessible to other translation units that reference it
by using the extern specifier.
4) It can be used in preprocessor directives.
5) It cannot be used to specify bounds in an array declaration.
✍: Guest
2012-04-24, 2711👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - How to prevent my .NET DLL to be decompiled? By design .NET embeds rich M...
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, ...
How To Define a Data Source Name (DSN) in ODBC Manager? - Oracle DBA FAQ - ODBC Drivers, DSN Configu...
Is There Any XSD File to Validate Atom Feed Files? - RSS FAQs - Atom Feed Introduction and File Gene...
What Information Is Needed to Connect SQL*Plus an Oracle Server? - Oracle DBA FAQ - Introduction to ...