Others you will particularly need later:
Getting Started Guide Windows
Reference Manual
CUDA Best Best Practices Guide
NB briefly that program is almost a “Hello World”, except that what it does is put 7 into every element of a small array. And you can do far far far more than that in CUDA.
PS this code isn’t doing anything visual, except printing a list of numbers. Cuda uses the processing power of the GPU to do NON-graphics processing. The SDK (Software development kit) contains a lot of examples that use the GPU to do a mountain of calculations and then also display them. My favourite is the n-body simulation, 12000 particles with the gravity interactions between every particle calculated every 1/20th of a second :)