DO 's
- Please assign runtime values in the code itself. You cannot give runtime parameters / standards inputs from the console.
- If you have not yet taken the mock test, please do that right now: http://www.devsquare.com/adc/pt/tryout.jsp
- C/C++ users
- Change the macro value in the header file to 1 if you are submitting C solution and to 2 if you are submitting C++ solution.
- C/C++ programs are compiled using Gnu Compiler on Linux. Key differences you should note:
- Include <iostream> instead of <iostream.h>
- Include the sentence "using namespace std" for standard outputs.
- There should be blank line at the end of the program
- Include the header file in the code you write for e.g. #include "MagicSquare.h "
- If your Run process takes too long to execute kill your process from the output pane.
- Before you begin coding create the file within the directory (use Right Click options). The file names should be exactly as mentioned in the problem statement.
- Give complete file extension .c or .cpp or .java as the case maybe.
DONT's
- Do not change the Directory Name / File Name.
- There should not be any spaces in the Directory Name / File Name.
- Do not write code that takes standard inputs / command line parameters / console inputs. For e.g. scanf(), getch(), getchar(), cin and other such commands will not work.
|