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 |
What is keyword in c?
Describe static function with its usage?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
Write a program in c using only loops to print * * * * * *******
What are the two types of functions in c?
How to implement variable argument functions ?
What would be an example of a structure analogous to structure c?
What is a nested loop?
What is the difference between exit() and _exit() function?