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
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 |
Which is the best website to learn c programming?
1. Write a program to reverse every second word in a given sentence.
Can we include one C program into another C program if yes how?
What is the purpose of ftell?
write a 'c' program to sum the number of integer values
What are the application of c?
What do you mean by a local block?
What is formal argument?
What is difference between structure and union in c programming?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
How can I find out if there are characters available for reading?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?