-2

Hello I'm a college student and I'm using Visual Studios 2022 for my C++ class,

I was doing a project and I couldn't debug it. This is what it shows when I press f5:

image

drescherjm
  • 10,365
  • 5
  • 44
  • 64
  • 5
    [Please do not upload images of code/errors when asking a question.](//meta.stackoverflow.com/q/285551) – Passerby Feb 02 '22 at 22:08
  • 1
    the oint is that you cant debug a program until it compiles cleanly. Fix the error that others have (and the compiler) have told you about (although its not obvious) – pm100 Feb 02 '22 at 22:16
  • Numbers starting with a `0` are considered octal (base 8), and can then only contain digits 0-7. – BoP Feb 02 '22 at 22:46

1 Answers1

1

Remove zero from the beginning of const int STUDENT_ID = 0488319

Farhan Ali
  • 116
  • 5