pip install jupyter_client
python install_c_kernel
install_c_kernel --user
Sources:
- The C Programming Language - Brian K
- CS50x
- Practical C Programming (3rd edition) - Steve O
- https://towardsdatascience.com/an-introduction-to-debugging-in-c-and-lldb-part-i-e3c51991f83a
- https://lldb.llvm.org/use/tutorial.html
gcc <program.c>
``
or
```C
gcc -o <out_file_name> <in_file_name.c>
For verbose mode:
gcc -o -v <out_file_name> <in_file_name.c>
To compile but not link:
gcc -c <in_file_name.c>
Create a .o output file that needs to be linked
Use cc -g <program.c> <out>
lldb out
run or some other command