Algorithmic issues
...Let's look at the question, instead of the code...
Write a program that merges lines alternately from two files and writes the results to stdout. If one file has fewer lines than the other, the remaining lines from the larger file should simply be copied to stdout.
Given that you are supposed to be dealing with lines, it seems better to read whole lines. For that, you should use fgets() or perhaps getline() (though the latter is less widely available than the former).
char line1[4096];
char line2[4096];
...
char *l1 = fgets(line1, sizeof(line1), input1);
char *l2 = fgets(line2, sizeof(line2), input2);
while (l1 != 0 && l2 != 0)
{
fputs(line1, stdout);
fputs(line2, stdout);
l1 = fgets(line1, sizeof(line1), input1);
l2 = fgets(line2, sizeof(line2), input2);
}
/* One file has reached EOF */
if (l1 != 0)
{
fputs(line1, stdout);
while (fgets(line1, sizeof(line1), input1) != 0)
fputs(line1, stdout);
}
if (l2 != 0)
{
fputs(line2, stdout);
while (fgets(line2, sizeof(line2), input2) != 0)
fputs(line2, stdout);
}
Nitpicking style
Personally, I don't like the way you have spaces around the parentheses on functions - K&R distinguish between operators such as if and for where there's a space separating the keyword and the expression and function calls where there is no such space. It is a style issue, though, so very subjective.
These lines of code give ample ammunition:
bool end_of_file1 = false, end_of_file2 = false;
bool file1_newline = false, file2_newline = false;
printf ("Enter the name of the two files to be merged,\
separated by space: ");
scanf ("%10s %10s", file1, file2);
input1 = fopen (file1, "r");
input2 = fopen (file2, "r");
Don't combine multiple declarations on a single line, especially when they're initialized.
bool end_of_file1 = false;
bool end_of_file2 = false;
bool file1_newline = false;
bool file2_newline = false;
(But you get plus points for using suffixes 1 and 2 rather than 'no suffix' and 2.)
Don't split string literals across lines with backslashes. That is a very antique way to do it. Use string concatenation, standard since 1989 (and fix the grammar too). Note that among the many defects of the backslash-newline technique are that it screws up the indentation of the code and it is very vulnerable to editing errors.
printf("Enter the names of the two files to be merged,"
" separated by space: ");
Consider a fflush(stdout); before reading. In practice, it isn't usually necessary, but worth thinking about. Notice that the user can enter the two names on separate lines; that will also work. Limiting the file names to just 10 characters is rather parsimonious, I think; you should probably allow for at least 256 characters. It is good that you specified the size of the strings in format arguments, and did so correctly (at sizeof(array)-1, not sizeof(array)). A more useful design of program would probably take the file names from the command line arguments to the program, rather than prompting the user for the names.
Always test the result of scanf():
if (scanf("%10s %10s", file1, file2) != 2)
...something went wrong...
Always test the result of fopen():
if ((input1 = fopen (file1, "r")) == 0)
...something went wrong...
if ((input2 = fopen (file2, "r")) == 0)
...something went wrong...
More of your code
while ( end_of_file1 == false ) {
if ( file1_newline == false )
c = getc (input1);
if ( end_of_file2 == true && end_of_file1 == false
&& i == 0 ) {
putc ('\n', stdout);
i = 1;
}
Indent the body of your loop by one level (or, on StackOverflow, do not use tabs). You are correct to use int for c (and later d).
The logic which follows in the loop is ... obscure. It is not clear what you are up to. Generally, you want to head off EOF as soon as you can; you wait a while before doing that test. The body of the loop is inscrutable to me - very complex logic (well, it looks complex; I suspect the underlying logic is simple, but since there's no explanation of what it does, it looks convoluted).