hello friends
what do u mean by BUS ERROR
i got this error while i am doing my program in DATA STRUCTURES

Answers were Sorted based on User's Feedback



hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STR..

Answer / theredplanethavoc

This error occurs when the program tries to access a memory
location outside its address space. That is, accessing
uninitialized pointers, or even mangled pointers (ones which
have no reference or have been deleted).

The Bus error means that the kernel did not detect the
problem on its own; the memory system realized the error.

Is This Answer Correct ?    4 Yes 0 No

hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STR..

Answer / ravi

http://en.wikipedia.org/wiki/Bus_error

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Interview Questions

Explain how do you convert strings to numbers in c?

0 Answers  


f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?

9 Answers   Hughes, Tech Mahindra,


What will be your course of action for a push operation?

0 Answers  


Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June

0 Answers  


3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r

3 Answers   Huawei,






What is array of structure in c programming?

0 Answers  


write a program to display reverse of a number using for loop?

14 Answers  


Why do we need a structure?

0 Answers  


Program to find the value of e raised to power x using while loop

5 Answers   IBM, N Tech,


Can u return two values using return keyword? If yes, how? If no, why?

7 Answers  


Explain Basic concepts of C language?

0 Answers   EXL,


What is n in c?

0 Answers  


Categories