Search results

  1. S

    Hello people

    Hello, I'm new here, I was here like 3years ago, but I'm back, I'm a programmer, I think I can learn from U a lot, and I can share some things for u too :)
  2. S

    array in C

    I just have one question about preincrementation. For ex. we got array[6] = { 1, 2, 3, 4, 5, 6 }; for(i=0; i < 6; i++) { array[i]=array[i+1]; } why this one does not work: for(i=0; i < 6; 1) { array[i]=array[++i]; }
Back
Top