Hi guys, today I wanted to start learning about programming, so I wanted to do that Hello World crap thinking it would be really easy, so I wrote the program: [CODE]#include<stdio.h> #include<stdlib.h> int main() { printf("\nHello World!"); return(0); }[/CODE] And for compiling it I wrote the command: [CODE]gcc -Wall -W -Werror helloworld.c -o helloworld[/CODE] But it didn't work and I got: [CODE]collect2: ld returned 1 exit status[/CODE] I googled for a solution but I didn't found anything, help me please.