Search:

Type: Posts; User: GokhanK

Search: Search took 0.00 seconds.

  1. Replies
    13
    Views
    1,040

    The last two answers really have explained to me....

    The last two answers really have explained to me. So I can say I shouldn't trust the code above to be always true.

    Thank you very much for your answers.
  2. Replies
    13
    Views
    1,040

    Thank you very much for your correction. However...

    Thank you very much for your correction. However the code below still doesn't do what I assume.


    #include <stdio.h>

    int f(int *restrict x,int *restrict y, int *restrict z);

    int main(void){...
  3. Replies
    13
    Views
    1,040

    Could you explain me a bit how to use it? I...

    Could you explain me a bit how to use it?

    I did a try:


    #include <stdio.h>

    int f(int *restrict x,int *restrict y, int *restrict z);

    int main(void){
  4. Replies
    13
    Views
    1,040

    Thank you very much for your answer. I have...

    Thank you very much for your answer. I have looked for it a bit and I can use C99 standarts now. By the way I couldn't understand the restrict qualifier:


    #include <stdio.h>
    int main(void){
    ...
  5. Replies
    13
    Views
    1,040

    restrict type qualified pointers

    Hello all,

    I want to give a try to "restrict" type-qualifier. I have looked for examples on google and I see the format is used: "int * restrict p";

    However when I write this I get an error: "p...
Results 1 to 5 of 5