Answer Posted / nashiinformaticssolutions
It occurs when a program attempts to access an invalid memory location.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is file in c language?
What does != Mean in c?
What is binary tree in c?
What functions are in conio h?
Write the control statements in C language
What is #line?
Which is better oop or procedural?
What is 1f in c?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What are the back slash character constants or escape sequence charactersavailable in c?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What are c identifiers?
Tell me when is a void pointer used?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }