what does ‘Bus Error’ mean?
Answer / 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 |
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is the use of #define preprocessor in c?
What is the difference between null pointer and the void pointer?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
WHAT IS PRE POSSESSORS?
What happens if header file is included twice?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Which is an example of a structural homology?
What do you understand by friend-functions? How are they used?
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.