In C programming, how can a store a set of values entered by the user into an array using only pointers and no square brackets?

link|improve this question
5  
Do you have a keyboard without the [] keys? Is this homework? – JoshD Oct 12 '10 at 1:46
feedback

3 Answers

up vote 2 down vote accepted

Try:

int  x??(??) = { 0,1 ,2 3, 4, 5, 6};

x??(2??) = 122;
link|improve this answer
PS this was a bit if a joke. Though Tri-graphics work (technically) they are very unreadable. See James McNellis for a better solution. – Loki Astari Dec 5 '10 at 18:42
feedback

X[Y] is exactly the same as *((X) + (Y)).

link|improve this answer
feedback
#include <stdio.h>


int main(int argc, char *argv)
{
  int i, *ip;

  static int a[] = {0,1,2,3,4,5,6,7,8,9,10,11};

  for(ip=a; ip < a+12; ip++)
    (*ip) *=2;  /* restore as number times 2 */

  putchar('\n');

  for(i=0; i < 12; i++)
    printf("%3d", a[i]);

  putchar('\n');



  return 0;
}

Result of restoring value * 2 to each element.

frayser@gentoo ~/doc/Answers/src/Haskell $ make array && ./array
cc     array.c   -o array

  0  2  4  6  8 10 12 14 16 18 20 22
link|improve this answer
Making use of "entered by the user" values for(ip=a; *ip++ = *argv++;); will copy user input from argv[] to a[]. – frayser Oct 12 '10 at 2:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.