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 |
What is #line?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
What is an expression?
Array is an lvalue or not?
write a program to print data of 5 five students with structures?
What is union and structure in c?
How can I open files mentioned on the command line, and parse option flags?
What are the different types of storage classes in C?
write a program whose output will be- 1 12 123 1234
What is indirection? How many levels of pointers can you have?
how should functions be apportioned among source files?
what is computer engg