Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!cs.utexas.edu!wuarchive!brutus.cs.uiuc.edu!jarthur!uci-ics!gateway From: rfg@paris.ics.uci.edu (Ronald Guilmette) Newsgroups: comp.std.c Subject: A simple typing question. Message-ID: <25D7D0BE.17645@paris.ics.uci.edu> Date: 13 Feb 90 09:17:50 GMT Organization: UC Irvine Department of ICS Lines: 17 /* gcc 1.36 question 891215_02 Should the following code generate either errors or warnings when compiled with an ANSI conformant C compiler? The question really is: "What is the type of a?" Is the type of `a' simply `int *' or is it `int * const'? */ int *p; void function (int a[]) { a = p; }