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
In picoc real numbers are assign with a digit in front dot
ex 90.1 0.4
but fails when real nymbers are assign in a more common way
ex .5
here below an example error :
#include <stdio.h>
int main()
{
double a=.5; // <-- operator not expected here
return 0;
}
The text was updated successfully, but these errors were encountered:
In picoc real numbers are assign with a digit in front dot
ex 90.1 0.4
but fails when real nymbers are assign in a more common way
ex .5
here below an example error :
The text was updated successfully, but these errors were encountered: