C2704: Illegal number

[ERROR]

Description

An illegal immediate number has been specified.

Example
  int i = 4x; // error

  
  float f= 12345678901234567890;//error too large for a 
  long!

  
  float f= 12345678901234567890.;//OK, doubles can be as 
  large

  
Tips

Correct the number. For floating point numbers, specify a dot.

See also