Answer Posted / bhaskar
In computing, a bus error is generally an attempt to access memory that the CPU cannot physically address. Bus errors can also be caused by any general device fault that the computer detects. A bus error rarely means that computer hardware is physically broken - it is normally caused by a bug in a program's source code.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain union.
What are the types of operators in c?
What is stack in c?
Which is better oop or procedural?
What are the different properties of variable number of arguments?
What are directives in c?
Explain what is wrong with this statement? Myname = ?robin?;
What are the ways to a null pointer can use in c programming language?
Why C language is a procedural language?
write a program to create a sparse matrix using dynamic memory allocation.
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Is exit(status) truly equivalent to returning the same status from main?
Write a simple code fragment that will check if a number is positive or negative.
What is static volatile in c?
How to write a code for reverse of string without using string functions?