C Programming Language 2nd Page 43 example code
#include <stdio.h>
#define MAXLINE 1000
int get_line (char line[], int maxline);
void copy (char to[], char from[]);
int main()
{
int len;
int max;
char line[MAXLINE];
char longest[MAXLINE];
max = 0;
while ((len = get_line(line, MAXLINE)) > 0)
if (len > max)
{
max = len;
copy (longest, line);
}
if (max > 0)
printf("%s", longest);
return 0;
}
int get_line (char s[], int lim)
{
int c, i;
for (i = 0; i < lim-1 && (c = getchar()) != EOF && c != '\n'; ++i)
{
s[i] = c;
}
if (c == '\n')
{
s[i] = c;
++i;
}
s[i] = '\0';
return i;
}
void copy (char to[], char from[])
{
int i;
i = 0;
while ((to[i] = from[i]) != '\0')
++i;
}
and Ctrl + B
Info: Internal Builder is used for build
gcc -o HelloWorld.exe "src\HelloWorld.o" "src\test.o"
src\test.o: In function `main':
C:\Users\Administrator\eclipse-workspace\HelloWorld\Debug/../src/test.c:15: multiple definition of `main'
src\HelloWorld.o:C:\Users\Administrator\eclipse-workspace\HelloWorld\Debug/../src/HelloWorld.c:14: first defined here
collect2.exe: error: ld returned 1 exit status
multiple definition of main
You have created two main source files in a single Eclipse project. When these are built, the two main() functions conflict. To resolves this, create seperate empty projects for each set of code you want to build.