This repository is used to learn and experiment over Git.
You can use this README.md to learn about the syntax. If you want a template for your software project, you can use README.md.template(make sure to rename it to 'README.md'). For more details about the format of the 'README.md' you can refere to the oficial documentation
-
Reference to files in your own repository.
-
Reference to an external link.
-
Reference to a section in this document. Remember to use '-' to replace blank spaces and to write the name in lowercase.
You can add some styles to your text. This can help you to made make more readble documentation for your projects. Happy documenting.
You can detail the function of some files like this:
main.c:
This file contain the main code of the application.
Also you can give some intructions to install something:
- Download the main program from here
- Install the program
- Uncheck 'Quick Install' option.
- Make sure to install the program on the 'D' drive.
- Enjoy
Lets write our first 'Hello World' code in C.
int main()
{
puts("Hello World!");
return 0;
}