What is the restrict keyword in C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
restrict is used with pointers to indicate that the object pointed to is accessed only through that pointer, enabling optimizations.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
restrict is used with pointers to indicate that the object pointed to is accessed only through that pointer, enabling optimizations.
| Is This Answer Correct ? | 0 Yes | 0 No |
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
write a program to copy the string using switch case?
When should you not use a type cast?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
what do the 'c' and 'v' in argc and argv stand for?
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
Explain what is the heap?
What is floating point constants?
What are the 4 types of programming language?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
What does static mean in c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?