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 |
What's the best way of making my program efficient?
How to write a program to receive an integer & find its octal equivalent by using for loop?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
what is the little endian and big endian?
Describe the steps to insert data into a singly linked list.
What is #define?
Wt are the Buses in C Language
What is use of bit field?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain the meaning of keyword 'extern' in a function declaration.