orange numbers

Dec 15, 2015 at 3:50pm
How do I format my numbers to be the same as all the others? I'm in Notepad ++ with language C++ and Encode in ANSI.

Most of my numbers are orange. I'm trying to upload a documetn and the ones that don't have orange numbers aren't working.
Dec 15, 2015 at 5:30pm
You probably have a syntax error somewhere. Doesn't your compiler tell you what's wrong?
Dec 16, 2015 at 12:16am
Notepad++ doesn't tell you jack squat. The most it'll tell you is if it thinks you spelled a word wrong, or if you're coding in HTML, it'll color code whatever it thinks are supposed to be inside quotation marks.

@OP, what IDE are you using? Notepad++ is just Notepad's hotter, slightly smarter friend.
Dec 16, 2015 at 8:13am
If he uses Notepad++ he probably uses no other IDE. A more relevant question is what compiler he uses.
Dec 16, 2015 at 8:49am
Uh isn't the compiler supposed to be integrated into the IDE, or am I mistaken in my definition?
Dec 16, 2015 at 9:14am
Yes. I said "no other IDE" because I wasn't sure if Notepad++ qualified as an IDE. Having a closer look it seems like it's just a code editor. My point is that if he uses Notepad++ he is probably not using an IDE at the same time, but of course he could be. In either case he's probably using a compiler (integrated in an IDE or standalone).

Frummel, if you are not using a compiler I suggest you start using one because writing C++ code without a compiler is hard to do. The compiler can give you descriptive error messages that helps you correct your code, and it also allow you to run your program so that you can test it.
Last edited on Dec 16, 2015 at 9:25am
Topic archived. No new replies allowed.