Date: Thu, 12 Jun 1997 10:12:04 -0400 (EDT) From: Nikita Proskourine To: Kristian Dorland cc: djgpp AT delorie DOT com Subject: Re: what am I doing wrong. In-Reply-To: <3399c3e5.7015538@nbisrv.nbi.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Sat, 7 Jun 1997, Kristian Dorland wrote: > main() > > { > int one == 1234; this line should be int one = 1234; == is to check if one is equal to 1234, e.g. if (one == 1234) printf("Variable one is equal to 1234\n");