A source file is nothing more than a text file with code. Therefore, any file created in Notepad and saved as "anyname.c" is considered a C source file.
The maximum size of a file in Unix depends on two things: the word size of the kernel, and the setting for LARGE_FILE support on the file system. For 32 bit system the maximum default would be about...
A "source file" holds the instructions for a program in text, e.g. computer commands like printf(). When the source file is processed by a computer language compiler object files are created. These...