c++ beginner

hi...im not actually a first time user of c++ but i have many problems on using it. first is that i have a problem on making psuedocodes. i need some advices on easy ways of tryng to come up with good psuedocodes.
If you mean pseudocode for planning purposes, there is no right way to do it (even though one of my professors would disagree). Use anything that helps you clearly understand how you will approach your problem. Don't try too hard to follow what the language (C++ in this case) actually requires, but feel free to write things that have correct or nearly correct syntax if it helps explain your idea more clearly. You might want to read http://en.wikipedia.org/wiki/Pseudocode

Perhaps you mean what assembly language programmers sometimes call pseudo-ops. These are instructions for the assembler or compiler. This is where your #include, #define, etc. come in. For #include, you need to get familiar with the standard library and any other libraries you want to use. Then you will know what to #include. You might want to read http://en.wikipedia.org/wiki/C_preprocessor
Topic archived. No new replies allowed.