User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1
I am new at using gcc. I have ubuntu 18.10 and gcc 8.30. I try
compiling a simple c program with the following command gcc hyworld.c -o
hyworld. It seems to compile but when I try to run it I get the error
message
file type shared library. What am I doing wrong?
program
#include <stdio.h>
main()
{
printf("hyworld");
return o ;
}