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 program in c using only loops to print * * * * * *******
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
How can type-insensitive macros be created?
Explain what is meant by high-order and low-order bytes?
What is getch?
I have a varargs function which accepts a float parameter?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
char ch=10;printf("%d",ch);what is the output
can we initialize all the members of union?
Is double link list a linear data structure? If Yes, Why?If No, Why?
what is real time system?what is the differance between hard and soft real time systems
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?