Muistiinpano
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoja.
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoja.
expected exponent value, not 'character'
Remarks
The character used as the exponent of a floating-point constant is not a valid number. Be sure to use an exponent that is in range.
Example
The following example generates C2021:
// C2021.cpp
float test1=1.175494351E; // C2021
Possible resolution:
// C2021b.cpp
// compile with: /c
float test2=1.175494351E8;