What is a segmentation fault?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
It occurs when a program attempts to access an invalid memory location.
| Is This Answer Correct ? | 0 Yes | 0 No |
It occurs when a program attempts to access an invalid memory location.
| Is This Answer Correct ? | 0 Yes | 0 No |
what r the cpu registers r ther?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Write a program to find the biggest number of three numbers in c?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
What does p mean in physics?
How does C++ help with the tradeoff of safety vs. usability?
How can a program be made to print the name of a source file where an error occurs?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Explain can you assign a different address to an array tag?
why arithmetic operation can’t be performed on a void pointer?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What are the key features of C?