I'm taking this course from Coursera and they asked us to have at least some knowledge in C .
So as they asked us to use GCC And Ubuntu , I installed both of them , I then followed this tutorial from YouTube but I had no luck running or compiling.
In fact , while I'm trying to rename my Empty file to "test.c" the icon of the file doesn't seem to change to letter "C" like his file.
As for compiling , I tried doing this :
gcc test.c -o testbut I had no chance and I received the following error code :
gcc: error: test.c: No such file or directory
gcc: fatal error: no input files
compilation terminatedI can't understand why it says there is no such file or directory while I can clearly see the file on the Desktop.
31 Answer
gcc will not search your computer for the file named test.c; it must be present in your working directory in your shell session.
$ pwd to see what your current working directory is.
$ ls to list the files in your working directory.