You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
not correct 2d (and more) arrays
return whithout statement not work
errors in lexer:
'\0'
'''
/x11 <- code of char
no empty statement, so for(;;) - not work
bad preprocessor realisation : '#define macros macros' <- endless loop preprocessing when find 'macros' in code
declaration scope - not correct
possible redeclarate variable with same name
not correct declaration specifiers analis : 'long short int' run without problem
incorrect block initialising int arr[2] = {2.0f, 3.0f} <- run whithout cast float to int. it's not correct
no switch
no ellipsis
no goto
incorrect || && logic operators. right hand expressin not run if left ensure logic result '1||2/0' no devision by zero error
constant expression not correct - you need to calc result on your virtual mashine, but you calculate in code.
The text was updated successfully, but these errors were encountered:
not correct 2d (and more) arrays
return whithout statement not work
errors in lexer:
'\0'
'''
/x11 <- code of char
no empty statement, so for(;;) - not work
bad preprocessor realisation : '#define macros macros' <- endless loop preprocessing when find 'macros' in code
declaration scope - not correct
possible redeclarate variable with same name
not correct declaration specifiers analis : 'long short int' run without problem
incorrect block initialising int arr[2] = {2.0f, 3.0f} <- run whithout cast float to int. it's not correct
no switch
no ellipsis
no goto
incorrect || && logic operators. right hand expressin not run if left ensure logic result '1||2/0' no devision by zero error
constant expression not correct - you need to calc result on your virtual mashine, but you calculate in code.
The text was updated successfully, but these errors were encountered: