what is the difference b/w NULL and null?
Answer Posted / deepika
NULL------ It is a macro defined null pointer.
size(NULL)--->4 bytes
null------It is the name of the first character in ASCII character set. size(null)----->1 byte
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Why static variable is used in c?
Why use int main instead of void main?
write a program in c language to print your bio-data on the screen by using functions.
Write a C program to count the number of email on text
How will you write a code for accessing the length of an array without assigning it to another variable?
can any one provide me the notes of data structure for ignou cs-62 paper
Explain what is #line used for?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Does c have function or method?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Are the expressions * ptr ++ and ++ * ptr same?
What is the advantage of using #define to declare a constant?
How do you view the path?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
can we implement multi-threads in c.