Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is the difference between NULL('\0') and 0?

Answers were Sorted based on User's Feedback



what is the difference between NULL('\0') and 0?..

Answer / sri

null(\0) is used for strings,and there is difference
between \0 and 0.

Is This Answer Correct ?    25 Yes 1 No

what is the difference between NULL('\0') and 0?..

Answer / shani chaudhari

null(\0) is used for termination of string meance each and
every string ended with \0 while 0 is mostly related with
binary operations..null(\0) meance nothing but 0 has its own
value and existance. both are different

Is This Answer Correct ?    11 Yes 0 No

what is the difference between NULL('\0') and 0?..

Answer / guest

NULL('\0')- A string in C is always terminated by a null
character.The ascii value of '\0' is 0
0 - The ascii value of 0 is 48

Is This Answer Correct ?    10 Yes 3 No

what is the difference between NULL('\0') and 0?..

Answer / guest

ASCII value of 0 is 0,but ASCII value of '\0' is 27.

Is This Answer Correct ?    22 Yes 16 No

what is the difference between NULL('\0') and 0?..

Answer / salim

I am going to speak in cotext to c language.
NULL is a macro defined in header files such as
stdio.h,stdlib.h,alloc.h,stddef.h,mem.h.The c pre processor
substitutes NULL by the value 0.Its declaration appears to
be like #define NULL 0 in the standard libraries.It is
used to initialise pointers to 0 and helps in portability.
It is a null pointer constant a convention for programmers
to initialise pointers.It is used mainly with pointer.

0 is simply an integer constant.

/0 is a backslash character contant used to indicate end of
string or a string terminator.

Is This Answer Correct ?    6 Yes 0 No

what is the difference between NULL('\0') and 0?..

Answer / palani222samy

NULL is an the empty value but 0(zero) is an one of the value

Is This Answer Correct ?    7 Yes 4 No

what is the difference between NULL('\0') and 0?..

Answer / shashwat

Actually binary code of both are same.
0 -> 00000000 NULL
But when this 0 is included in a string or char as

char x = '0';
or char x[20] = "1230";

It is the character zero (not NULL). It has an ASCII of 48
and will be stored as
00110000.

That is why, they have created different zeroes to
represent either the character zero or ASCII value zero.

Is This Answer Correct ?    1 Yes 0 No

what is the difference between NULL('\0') and 0?..

Answer / 111

What is the difference b/w '\0' and NULL?

The first is the representation for the null character, i.e.,
a character with value zero. It is used as a string
terminator in C.
It is actually an "escape sequence" with an octal zero.

The second is a macro that resolves to a null pointer value.
In C source
code a literal zero is also converted into a null pointer
constant when
it occurs in a pointer context.

The first expression is of type int while the second is of a
pointer
type.

> In which case It is useful?

Use '\0' to terminate strings and NULL to initialise
pointers and set
them to a "safe" value after they have been used.

Is This Answer Correct ?    1 Yes 0 No

what is the difference between NULL('\0') and 0?..

Answer / madhu

end of the string is indicated by \0 but 0 is a value
thus there is difference between them

Is This Answer Correct ?    2 Yes 2 No

what is the difference between NULL('\0') and 0?..

Answer / mangal

The nul is used for the string so there is no any character
contain by null
but
The o is an intiger value an they have some meaning fot
that in intiger type

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is the use of in c?

0 Answers  


write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.

6 Answers  


When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?

0 Answers   TISL,


how to print value of e(exp1)up to required no of digits after decimal?

1 Answers  


# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }

5 Answers  


Explain what is meant by 'bit masking'?

0 Answers  


How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)

1 Answers   iLantus, Subex,


What are the types of data types and explain?

0 Answers  


Which command is more efficient? *(ptr+1) or ptr[1]

3 Answers  


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

0 Answers  


What is the difference between text and binary modes?

0 Answers  


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

0 Answers  


Categories