What is the explanation for the dangling pointer in c?


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

Post New Answer

More C Interview Questions

what is difference between c and c++

4 Answers  


Is c is a high level language?

0 Answers  


what is a function pointer and how all to declare ,define and implement it ???

4 Answers   Honeywell,


What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

3 Answers   Accenture,


How do you write a program which produces its own source code as its output?

4 Answers  






Why we write conio h in c?

0 Answers  


Is fortran faster than c?

0 Answers  


#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }

6 Answers   ME,


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

1 Answers  


What does %d do in c?

0 Answers  


How do you determine whether to use a stream function or a low-level function?

0 Answers  


#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā€œ%dā€ ,a[i]); }

8 Answers  


Categories