0
its the file (s) the go into a program. like helloWorld.exe might have the file helloWorld.cpp.
the source code of this program (.exe) would be inside that file which might be something like:
#include <iostream>
int main ()
{
std::cout <<"Goodbye world...";
return 0;
}