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 library is sizeof in c?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
what is c?
Differentiate Source Codes from Object Codes
What does c in a circle mean?
What is an operator?
Whats s or c mean?
Where we use clrscr in c?
write a program for fibonaci series by using while loop in c?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How can a program be made to print the line number where an error occurs?