Xref: utzoo comp.lang.c:26670 comp.lang.misc:4360 Path: utzoo!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!mips!bridge2!jarthur!uci-ics!bvickers From: bvickers@ics.uci.edu (Brett J. Vickers) Newsgroups: comp.lang.c,comp.lang.misc Subject: Re: C strongly typed? Message-ID: <25F5AA40.27091@paris.ics.uci.edu> Date: 8 Mar 90 00:41:36 GMT References: <259@eiffel.UUCP> <1990Mar1.172526.28683@utzoo.uucp> <849@enea.se> <1990Mar7.182230.5517@utzoo.uucp> Reply-To: bvickers@ics.uci.edu (Brett J. Vickers) Organization: UC Irvine Department of ICS Lines: 21 In article <1990Mar7.182230.5517@utzoo.uucp> henry@utzoo.uucp (Henry Spencer) writes: > C's type system is not extensible unless >you count "struct", but the language is strongly typed -- mixing random >types is not allowed. This is simply not true. foo() { int a; char c; a = 48; c = a; } As far as I know, this will compile. C is extremely flexibly typed. If you want a strongly typed language, use Ada. -- bvickers@bonnie.ics.uci.edu