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 |
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
Write a code to remove duplicates in a string.
What are local static variables?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is indirection in c?
Explain how do you list a file’s date and time?
What is a file descriptor in c?
Write a program with dynamically allocation of variable.
write a program to print the one dimensional array.
what is develop in c language
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort