Answer Posted / hr@tgksolutions.com
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 #define used for in c?
What is variable and explain rules to declare variable in c?
What is function prototype?
4. main() { int c=- -2; printf("c=%d",c); }
What is a stream?
Explain bit masking in c?
Explain pointer. What are function pointers in C?
What is the maximum length of an identifier?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What does the format %10.2 mean when included in a printf statement?
Between macros and functions,which is better to use and why?
difference between native and cross compilers