What is the use of the restrict keyword?
Answer / nashiinformaticssolutions
Used to optimize pointers by guaranteeing no overlap with other pointers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why do we use stdio h and conio h?
What is use of #include in c?
WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?
What are the 4 types of programming language?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is the deal on sprintf_s return value?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
How many levels of pointers can you have?
How do I copy files?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
write a program to display reverse of a number using for loop?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }