View Single Post
  #161   Report Post  
Posted to uk.d-i-y
Clive George Clive George is offline
external usenet poster
 
Posts: 2,580
Default Windows 7 32 or 64 bit ?

On 16/04/2012 13:33, Robin wrote:
VB (and BBC Basic) have procedual and loop statements, that if used
properly negate the need to scatter GOTO statements around the
source. I can write a program in VB that would be structured
identically in C (or whatever) just replacing little bits. No
references to line numbers required.


Does the use of GOTO matter much - or at all - with modern compilers?

I ask as I thought that modern compilers broke stuff down into control
structures so they didn't care if you used goto or cleverer stuff. But
pl bear in mind that for me "modern" is anything after the mid-70s ;(


It's not so much compilers that care, it's people. Use of goto can make
your code a nightmare to read.