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

What are the three constants used in c?

0 Answers  


how to convert binary to decimal and decimal to binary in C lanaguage

7 Answers   BPO, Far East Promotions, IBM, RBS,


Difference between data structure and data base.

7 Answers   CTS, Value Labs, Zoho,


Is javascript based on c?

0 Answers  


What is unsigned int in c?

0 Answers  


what is Structural oriented language? give some example of this language.....?

1 Answers  


How important is structure in life?

0 Answers  


when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .

4 Answers  


Why clrscr is used after variable declaration?

0 Answers  


write a program for size of a data type without using sizeof() operator?

22 Answers   HCL, IBM,


what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;

2 Answers   Google,


what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }

6 Answers   Microsoft,


Categories