How is a null pointer different from a dangling pointer?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float

1 Answers  


what does ‘Bus Error’ mean?

1 Answers   ABC,


How will you allocate memory to double a pointer?

1 Answers  


Taking an example,differentiate b/w loader and linker ?

1 Answers  


write an algorithm and c program to add two 2x2 matrics

2 Answers  


What are the properties of union in c?

0 Answers  


which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


How do you determine if a string is a palindrome?

1 Answers  


What are the salient features of c languages?

0 Answers  


the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset

0 Answers  


Can you assign a different address to an array tag?

0 Answers  


Categories