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 |
disadvantages of realloc ?
difference between loading and linking
What is zero based addressing?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
What are global variables and explain how do you declare them?
What is structure in c language?
What's wrong with "char *p = malloc(10);" ?
how should functions be apportioned among source files?
how to find anagram without using string functions using only loops in c programming
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks