What is PC-Xware?
PC-Xware and Other Tutorials • Is there a programming standard for CS 181? Yes, please check out the CS 181 C/C++ Coding Convention document. • Which compiler should I use for the projects? You must use gcc for the C projects and g++ for the C++ projects. Your grader will compile your project assignment using only the designated compiler. If your project does not compile under this condition, it will receive a grade of zero. • How do I turn in my project assignment? • The turnin command looks like the following: turnin -c course[=section] -p project_name file1.c file2.c …. • Use your recitation section number to turn in your project. You should turn in a single source file if it is a simple project, or multiple source files and the makefile to make the executable if it is a complex project. For example, to turnin project 1 assuming you are in Recitation section 3: turnin -c cs181=o301 -p project1 myproj1.c • Use the -v option to check your submission: turnin -v -c cs181=0301 -p proje