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 |
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
How can you return multiple values from a function?
Why do we need volatile in c?
What is the difference between typedef and #define?
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
What does d mean?
What is external and internal variables What is dynamic memory allocation what is storage classes in C
1 1 12 21 123 321 12344231 how i creat it with for loop??
How can you be sure that a program follows the ANSI C standard?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 Answers ABC Infotech, ADP, College School Exams Tests, Kovair,
Find occurence of a character in a sting.