I have this code that Ive written for c
Using lubuntu and gedit
Now my code is right yet lubunto is saying that line 6 and 7 isn’t
I ran my code on another compiler and it works but in lubunto it didn’t
Please help me understand why is lubunto not working
I tried sudo apt update
It didn’t work
I tried adding a path
Still wasn’t sure how to do it
>Solution :
You must compile your code.
This is likely: reem@lubuntu:~$ gcc test.c
which will produce file a.out (if there are no compiler errors)
Then you can attempt to run it: reem@lubuntu:~$ ./a.out to see if it works.

