int *a;
int i;

for(i=0; i<5; i++)
{
   1. scanf(\"%d\",a);
       *a++;
  2. scanf(\"%d\",&a[i]);
}





교수님이 포인터로 쓰라했는데

1번과 2번중 뭘써야되나요