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
Lists the benefits of c programming language?
When should a far pointer be used?
What are the scope of static variables?
Why shouldn’t I start variable names with underscores?
Subtract Two Number Without Using Subtraction Operator
What is meant by recursion?
Differentiate abs() function from fabs() function.
What does stand for?
What is a global variable in c?
Explain how can you determine the size of an allocated portion of memory?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is wrong with this declaration?
In a switch statement, explain what will happen if a break statement is omitted?