Link to home
Start Free TrialLog in
Avatar of johngodzbi
johngodzbi

asked on

NULLl Mean -1?

we know handle means integer.
when
 if X_handle <> NULL {NULL means -1 or 0?}
Avatar of jhance
jhance

Your questions is quite ambiguous but the SPECIFIC value of NULL is 0 on a Microsoft Windows system.  But note that to assume that NULL always is 0 is not wise as the C and C++ language specifications do not require this.
If u want the definition of NULL, place the text cursor above it and press F12.
ASKER CERTIFIED SOLUTION
Avatar of ShaunWilde
ShaunWilde

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Paul Maker
always refer to null as 'NULL' and not 0 or -1 etc this way it dont matter what the headers define it as.
Yes - eventhough NULL will usually be 0 in C and C++, in C# there is a keyword 'null' and in Visual Basic Scripting there is one called Null

eg the definition for null

The null keyword represents a special value that indicates a variable does not refer to any object. The value null may be assigned to any class or interface variable to aid garbage collection. (Assigning the value null to any of the items above indicates to the garbage collection system that the object or variable is no longer in use.) It cannot be cast to any other type, and should not be considered to have a known numeric value.

While you are here - also remember that BOOL is not the same as bool and is not the same as VARIANT_BOOL
which I like to right like this
BOOL != bool != VARIANT_BOOL



eek for 'right' read 'write' :)
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
jhance: null pointers are always denoted by the constant 0 in C and C++, even when the underlying machine uses another representation (which is not uncommon). The conversion from "x bits 0" to the internal null pointer representation must be done by the compiler - that's why the compiler needs to know when a 0 is meant as pointer, hence the ((void *)0)

Peter
oh, johngodzbi, just another comment:

where do you know HANDLE means integer?
wtypes.h says
typedef void __RPC_FAR *HANDLE;
Hi,

Actually NULL is the null-pointer value used with many pointer operations and functions. A null character is defined as ASCII character 0, Chr$(0), so u can make use of NULL in comparison statement. By this statement we can say NULL == 0.

From

MRN Murthy
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Well, there is a difference in the meaning of NULL in C and C++. In C it is defined as a pointer that does not reference any object. In C++ it is an expression that evaluates to 0 (zero). In other words:

void* p = TRUE ? NULL : NULL;

should compile on any compliant ANSI-C-compiler; on any compliant C++-compiler an error should be issued since there is no implicit conversion from 0 to a void*. ShaunWild's post includes the #define's that you might want to check out. I deliberately used 'should' instead of 'do' as the real world is not perfect. VC++6.0 will compile the above line of code, even though it is erroneous.

Btw. the only constant you can be sure of in the C/C++ is sizeof( char ) == 1, even if it uses more than one byte in memory like some Alpha-chips.

-- .:fl0yd:.
You have asked many questions and only graded 4 of them, and they were all  C and D grades, hard to understand.  ADMINISTRATION WILL BE CONTACTING YOU SHORTLY.  Moderators Computer101 or Netminder will return to finalize these if they are still open in 14 days.  Experts, please post closing recommendations before that time.

Below are your open questions as of today.  Questions which have been inactive for 21 days or longer are considered to be abandoned and for those, your options are:
1. Accept a Comment As Answer (use the button next to the Expert's name).
2. Close the question if the information was not useful to you, but may help others. You must tell the participants why you wish to do this, and allow for Expert response.  This choice will include a refund to you, and will move this question to our PAQ (Previously Asked Question) database.  If you found information outside this question thread, please add it.
3. Ask Community Support to help split points between participating experts, or just comment here with details and we'll respond with the process.
4. Delete the question (if it has no potential value for others).
   --> Post comments for expert of your intention to delete and why
   --> YOU CANNOT DELETE A QUESTION with comments; special handling by a Moderator is required.

For special handling needs, please post a zero point question in the link below and include the URL (question QID/link) that it regards with details.
https://www.experts-exchange.com/jsp/qList.jsp?ta=commspt
 
Please click this link for Help Desk, Guidelines/Member Agreement and the Question/Answer process.  https://www.experts-exchange.com/jsp/cmtyHelpDesk.jsp

Click you Member Profile to view your question history and please keep them updated. If you are a KnowledgePro user, use the Power Search option to find them.  

Questions which are LOCKED with a Proposed Answer but do not help you, should be rejected with comments added.  When you grade the question less than an A, please comment as to why.  This helps all involved, as well as others who may access this item in the future.  PLEASE DO NOT AWARD POINTS TO ME.

To view your open questions, please click the following link(s) and keep them all current with updates.
https://www.experts-exchange.com/questions/Q.20068787.html
https://www.experts-exchange.com/questions/Q.20119679.html
https://www.experts-exchange.com/questions/Q.20126714.html
https://www.experts-exchange.com/questions/Q.20134537.html
https://www.experts-exchange.com/questions/Q.20137705.html
https://www.experts-exchange.com/questions/Q.20139107.html
https://www.experts-exchange.com/questions/Q.20182826.html
https://www.experts-exchange.com/questions/Q.20192596.html
https://www.experts-exchange.com/questions/Q.20230967.html
https://www.experts-exchange.com/questions/Q.20230975.html
https://www.experts-exchange.com/questions/Q.20231020.html
https://www.experts-exchange.com/questions/Q.20258451.html
https://www.experts-exchange.com/questions/Q.20272676.html
https://www.experts-exchange.com/questions/Q.20277853.html

To view your locked questions, please click the following link(s) and evaluate the proposed answer.
https://www.experts-exchange.com/questions/Q.20070329.html
https://www.experts-exchange.com/questions/Q.20136842.html
https://www.experts-exchange.com/questions/Q.20192718.html

*****  E X P E R T S    P L E A S E  ******  Leave your closing recommendations.
If you are interested in the cleanup effort, please click this link
https://www.experts-exchange.com/jsp/qManageQuestion.jsp?ta=commspt&qid=20274643 
POINTS FOR EXPERTS awaiting comments are listed in the link below
https://www.experts-exchange.com/commspt/Q.20277028.html
 
Moderators will finalize this question if in @14 days Asker has not responded.  This will be moved to the PAQ (Previously Asked Questions) at zero points, deleted or awarded.
 
Thanks everyone.
Moondancer
Moderator @ Experts Exchange
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:

Answered by: ShaunWilde, peterchen, DanRollins, jhance (points to be split)

Please leave any comments here within the next seven days.

PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!

Roshan Davis
EE Cleanup Volunteer