Сравнение C/C++ и FreeBASIC
 

C/C++
FreeBASIC
декларация переменной
int a;
int a, b, c;
dim a as integer
dim as integer a, b, c

неинициализированная переменная
int a;
dim a as integer = any
переменная , инициализированная нулем
int a = 0;
dim a as integer
инициализация переменной
int a = 123;
dim a as integer = 123
массив
int a[4];
a[0] = 1;
dim a(0 to 3) as integer
a(0) = 1

указатель
int a;
int *p;
p = &a;
*p = 123;
dim a as integer
dim p as integer ptr
p = @a
*p = 123
структура, определяемый пользователем тип
struct UDT {
int myfield;
}
type UDT
myfield as integer
end type

объявление типа, псевдонимы
typedef int myint;
type myint as integer
структурные указатели
struct UDT x;
struct UDT *p;
p = &x;
p->myfield = 123;
dim x as UDT
dim p as UDT ptr
p = @x
p->myfield = 123

декларация функции
int foo( void );
declare function foo( ) as integer
тело функции
int foo( void ) {
return 123;
}
function foo( ) as integer
return 123
end function

декларация процедуры
void foo( void );
declare sub foo( )
тело процедуры
void foo( void ) {
}
sub foo( )
end sub

byval параметры
void foo( int param );
foo( a );
declare sub foo( byval param as integer )
foo( a );

byref параметры
void foo( int *param );
foo( &a );

void foo( int& param );
foo( a );
declare sub foo( byref param as integer )
foo( a )




разделитель операторов
;

:
end-of-line
цикл for
for (int i = 0; i < 10; i++) {
...
}
for i as integer = 0 to 9
...
next

цикл while
while (condition) {
...
}
while condition
...
wend

цикл do-while
do {
...
} while (condition);
do
...
loop while condition

if блок
if (condition) {
...
} else if (condition) {
...
} else {
...
}
if condition then
...
elseif condition then
...
else
...
end if

switch, select
switch (a) {
case 1:
...
break;
case 2:
case 3:
...
break;
default:
...
break;
}
select case a
case 1
...


case 2, 3
...

case else
...

end select

строковые литералы, zstrings
char *s = "Hello!";
char s[] = "Hello!";
dim s as zstring ptr = @"Hello!"
dim s as zstring * 6+1 = "Hello!"

hello world
#include <stdio.h>
int main() {
printf("Hello!\n");
return 0;
}
print "Hello!"





комментарии
// foo
/* foo */
' foo
/' foo '/

проверка во время компиляции
#if a
#elif b
#else
#endif
#if a
#elseif b
#else
#endif
проверка во время компиляции целевой системы
#ifdef _WIN32
#ifdef __FB_WIN32__
модуль/заголовок имена файлов
foo.c, foo.h
foo.bas, foo.bi
Типичная команда компилятора для создания исполняемого файла
gcc foo.c -o foo
fbc foo.bas