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 |
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Between macros and functions,which is better to use and why?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
Explain the difference between exit() and _exit() function?
How many data structures are there in c?
Why cd or dvd are round why not square.
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
how to write a prog in c to convert decimal number into binary by using recursen function,
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?