What is AI?

Businesses succeed by using AI in many ways. Whether that is Amazon growing revenue with personalized product pitches, or UPS routing drivers efficiently to minimize costs, the bottom line is that AI…

Smartphone

独家优惠奖金 100% 高达 1 BTC + 180 免费旋转




What is a C file?

What happens when you type ls *.c? A C file is a source code file for a C. The C files can be edited in any basic text editor, but the syntax of the code will be not displayed, as do the other programs, because a compiler is needed. The C programming language was developed in the 60s and 70s by Dennis Ritchie to create utilities for Unix. The C language has also influenced the development of several programming languages ​​such as C ++, Java, Python, among others. When the command ls * .c Shell runs, lists all files with the .c extension corresponding to compile the script in C.

The character (*) means that the file name can be called in any way, the dot (.) means that it is a file with an extension, which in this case is (c) that corresponds to all files created in the programming language C. The character (*) means that the file name can be called in any way, the dot (.) means that it is a file with an extension, which in this case is (c) that corresponds to all files created in the programming language C.

Also remember that in Shell we can see all the files according to the PATH where we are located, besides that we can create an alias to represent our current user in Shell.

And finally, let’s remember that in Shell we can create variables that we can use in our programming codes. We can store these variables either in our local PATH or in the global variables in the main linux PATH. To do this, we execute the following command:

$ export HOLBERTON=”Betty”

Add a comment

Related posts:

The 8 Best Things About Questions To Ask Yourself At The End Of Each Day

here are some questions you w. “The 8 Best Things About Questions To Ask Yourself At The End Of Each Day” is published by Ali Khan.

Variety of uses of Dexacoin for Daily Life

The security system is one of the ways used by Fintech application manufacturers to attract the attention of the public. Currently the Fintech application is so much in favor of by various groups. If…

Building a Serverless Data Pipeline

As well as writing simple tutorials for serverless technology, I’ve also been enjoying using it in the applications I build inside the team. Today I thought I’d show you around one of these projects…