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 |
How to swap 3 numbers without using 4th variable?
write a programming in c language, 1 3 5 7 9 11
How can I write functions that take a variable number of arguments?
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
what is the difference between %d and %*d in c languaga?
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
main() { printf(5+"Vidyarthi Computers"); }
Program to trim a given character from a string.
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?