Hey everybody
I'm using C::B 10.05 with GCC-Compiler (rev. 6283) under windows 7(64).
int main()
{
double z;
printf("Input: "); //input e.g. 5
scanf("%lf", &z);
printf("Your input: %lf", z); //!!!output 0.000000, after deactivating C99-Standard z==5.000000!!!
return 0;
}
Is there a solution for this issue?
THX