FOR Loops

You can compare how FOR loops differ between Visual FoxPro and other programming languages.

Visual FoxPro BASIC

FOR n = 1 TO 10

? n

ENDFOR

For n = 1 to 10

Print n

Next n

Pascal C/C++

for n := 1 to 10 do

writeln(n);

for(n=1; n<11; n++)

printf("%d\n",n);

Expand imageSee Also


© , 1996-2020 • Updated: 11/10/20
Comment or report problem with topic