If you have forgotten how to program in C/C++ you should review C programming on the many tutorials on the internet or look through your favorite textbook or reference book. This document will not give you a tutorial on how to program in C/C++.
You must remember that when programming the TI DSP you are loading your program into a system that has its own DSP and memory and is apart from your computer. In order for you to print anything, the data must be sent from the DSP board to CCS and then displayed in the stdio display. This can be very slow so you will want to use the debugging tools to view variables.
In this lab you will be writing very simple C programs. If you want to print something you will obviously need to include the stdio.h file.
Your main program should look like:
#include <stdio.h>
main()
{
variables
code
}
Be sure to use good programming style.