09-14-2022, 06:41 PM
(This post was last modified: 09-14-2022, 06:45 PM by Kernelpanic.)
(09-14-2022, 04:47 PM)Spriggsy Wrote: However, the bug might not be related to QB64 itself. I wonder if one of you could try doing the equivalent in regular C/C++ and see what the console output gives you.
Do you mean something like this? - From 10 numbers it's over!
Code: (Select All)
//Aus QB64 - 14. Sept. 2022
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
long int n;
printf("\nGrosse Zahl: ");
scanf("%ld", &n);
printf("\n%ld\n", n);
return(0);
}