Answer Posted / glibwaresoftsolutions
Segmentation faults occur when invalid memory is accessed. Use debugging tools like gdb to analyze.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is function prototype?
How pointer is different from array?
What does return 1 means in c?
What is a void * in c?
What are comments and how do you insert it in a C program?
write a program to find out prime number using sieve case?
Explain about block scope in c?
write a program to print largest number of each row of a 2D array
What is .obj file in c?
Why does not c have an exponentiation operator?
How are pointers declared in c?
What is the difference between local variable and global variable in c?
Why calloc is better than malloc?
Are the variables argc and argv are local to main?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??