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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is a NULL Pointer? Whether it is same as an uninitialized pointer?

751


Why header file is used in c?

566


What is the most efficient way to count the number of bits which are set in an integer?

581


What is difference between arrays and pointers?

573


What is typedef?

657






What is the scope of static variables in c language?

622


typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none

703


How can I handle floating-point exceptions gracefully?

624


In which layer of the network datastructure format change is done

1424


What is string length in c?

600


Can a local variable be volatile in c?

571


Explain what standard functions are available to manipulate strings?

604


Is it acceptable to declare/define a variable in a c header?

678


What is #include in c?

592


GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA

1422