Explain what are bus errors, memory faults, and core dumps?


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

Post New Answer

More C Interview Questions

#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

0 Answers   Wilco,


In C language, a variable name cannot contain?

0 Answers  


Can static variables be declared in a header file?

0 Answers  


What is a pointer variable in c language?

0 Answers  


Process by which one bit pattern in to another by bit wise operation is?

0 Answers   InterGraph,


progrem to generate the following series 1 12 123 1234 12345

6 Answers   HCL, Wipro,


what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 Answers  


How can I read a binary data file properly?

0 Answers  


What does == mean in texting?

0 Answers  


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

1 Answers  


What is Heap?

3 Answers  


write a program to arrange the contents of a 1D array in ascending order

4 Answers  


Categories