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, 2815👍, 0💬
Popular Posts:
How To Define a Data Source Name (DSN) in ODBC Manager? - Oracle DBA FAQ - ODBC Drivers, DSN Configu...
If client side validation is enabled in your Web page, does that mean server side code is not run? W...
Can you explain why your project needed XML? Remember XML was meant to exchange data between two ent...
Do events have return type ? No, events do not have return type.
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...