The program judge is first loaded with the
pane showing. The description of the problem to be solved by your program along with a sample input and output is given.
Click on the
button. The program judge will switch to a pane where you can type or upload your source code. Paste the code given below as the answer to see what a successful run looks like. Enter a name (whatever you like) in the author field and then press the
button.
#include <stdio.h>
main()
{
printf("CSE1233 ");
printf("Computer Programming with C\n");
return 0;
}
NOTE: The return 0; statement is important. If it is omitted the program judge will give a runtime error (NZEC) message which means that the program terminated with a non-zero exit code.
After successfully submitting the program try changing the code to see what other error messages you receive from the program judge.
Return to the list of programming challenges.