Explain 'far' and 'near' pointers in c.
No Answer is Posted For this Question
Be the First to Post Answer
Define the scope of static variables.
how to generate the length of a string without using len funtion?
When would you use a pointer to a function?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Why calloc is better than malloc?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
how to find the given number is prime or not?
What is sizeof c?
What is volatile keyword in c?
When should a type cast not be used?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.