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:
Variable Types
What are the types of variables x, y, y and u defined in the following code?
#define Atype int* typedef int *p; p x, z; Atype y, u;
✍: FYIcenter
Answer: x and z are pointers to int. y is a pointer to int but u is just an integer variable
2007-02-26, 6922👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - Can we use events with threading ? Yes, you can use events with thread; t...
How To Delete All Rows a Table? - MySQL FAQs - Understanding SQL INSERT, UPDATE and DELETE Statement...
What is the difference between Session State and ViewState? ViewState is specific to a page in a ses...
What is the result of using Option Explicit? When writing your C program, you can include files in t...
How Do You Uninstall JUnit Uninstalling JUnit is easy. Just remember these: Delete the directory tha...