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 |
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
Why we use int main and void main?
write a program in C to swap two variables
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
Explain what is the difference between declaring a variable and defining a variable?
program for comparing 2 strings without strcmp()
Is it possible to create recycle bin in mobiles?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Describe newline escape sequence with a sample program?
write a C code To reverse a linked list
Explain how does flowchart help in writing a program?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..