Comparing strings...

John Gordon gordon at osiris.cso.uiuc.edu
Wed Oct 17 13:01:57 AEST 1990


	Also, one other thing: for() and while() loops are essentially 
identical.  The following loops are exactly the same:

	#1)
 	    for(i = 0; i < 100; i++)
	    {
		body of loop
	    }


	#2)
	   i = 0;
	   while(i < 100)
	   {
	     body of loop
	     i++;
	   }


	Hope it helps.



More information about the Comp.lang.c mailing list