Tabs and spaces — Makefile in C
The debate among developers over tabs and spaces revolves around the preferred method of indentation in code. Advocates of “tabs” believe that tabs are semantically correct, customizable and more accessible for indentation, especially for those with visual impairment. They recommend using tabs for indentation and using spaces for alignment. Advocates of "spaces" emphasize consistency, because spaces ensure that the code formats are displayed the same on different editors and platforms, thus avoiding the issue of variable tab sizes. This approach is often preferred in team environments to maintain a unified code appearance.
But if you program in C and need to use Makefile, then there is no choice - you have to use 'Tabs'.
The requirements for tabs in Makefile originated from Stuart Feldman, Unix developers and the creator of the "make" utility. Feldman selects tab characters to help distinguish commands from other text in Makefiles. Specifically, the Lex parser used in the early implementation of "make" has difficulty distinguishing between tabs and spaces, resulting in tab mandatory requirements. Although Feldman admitted that this was a suboptimal decision, the agreement still existed.
The screenshot above shows a Makefile. This example uses the Show Symbols feature in notepad - using it you can clearly distinguish tabs from spaces - the arrows indicate that tabs are used on lines 8, 12 and 16. If you use spaces instead of indenting these line tabs, the program will not run - you will receive an error:
Makefile:line_number: *** Missing delimiter. Stop.
So whether you prefer tabs or spaces when programming depends on you. But if you use Makefile in C, Stuart gives you no choice.
If you haven't seen the Silicon Valley episode above (S3 Ep6) - watch it, just like the entire series, it's very interesting.
Ben Santola—October
The above is the detailed content of Tabs and spaces — Makefile in C. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











C language data structure: The data representation of the tree and graph is a hierarchical data structure consisting of nodes. Each node contains a data element and a pointer to its child nodes. The binary tree is a special type of tree. Each node has at most two child nodes. The data represents structTreeNode{intdata;structTreeNode*left;structTreeNode*right;}; Operation creates a tree traversal tree (predecision, in-order, and later order) search tree insertion node deletes node graph is a collection of data structures, where elements are vertices, and they can be connected together through edges with right or unrighted data representing neighbors.

The truth about file operation problems: file opening failed: insufficient permissions, wrong paths, and file occupied. Data writing failed: the buffer is full, the file is not writable, and the disk space is insufficient. Other FAQs: slow file traversal, incorrect text file encoding, and binary file reading errors.

The readdir function in the Debian system is a system call used to read directory contents and is often used in C programming. This article will explain how to integrate readdir with other tools to enhance its functionality. Method 1: Combining C language program and pipeline First, write a C program to call the readdir function and output the result: #include#include#include#includeintmain(intargc,char*argv[]){DIR*dir;structdirent*entry;if(argc!=2){

C language multithreading programming guide: Creating threads: Use the pthread_create() function to specify thread ID, properties, and thread functions. Thread synchronization: Prevent data competition through mutexes, semaphores, and conditional variables. Practical case: Use multi-threading to calculate the Fibonacci number, assign tasks to multiple threads and synchronize the results. Troubleshooting: Solve problems such as program crashes, thread stop responses, and performance bottlenecks.

How to output a countdown in C? Answer: Use loop statements. Steps: 1. Define the variable n and store the countdown number to output; 2. Use the while loop to continuously print n until n is less than 1; 3. In the loop body, print out the value of n; 4. At the end of the loop, subtract n by 1 to output the next smaller reciprocal.

Notepad itself does not have automatic layout function. We can use a third-party text editor, such as Sublime Text, to perform the following steps to achieve automatic typography: 1. Install and open the text editor. 2. Open the file that needs to be automatically typed. 3. Find and select the automatic layout function. 4. The editor will automatically type the text. 5. You can customize the layout rules as needed. Automatic typography can save time and ensure text consistency and professionalism.

To solve the problem of Bootstrap Table garbled, you need to ensure that the data source is encoded in UTF-8 format. The steps are as follows: 1. Check the data source encoding as UTF-8; 2. Set the page encoding to UTF-8; 3. Use the data-urlencode attribute; 4. When requesting data using XMLHttpRequest, make sure that the server response is UTF-8 encoding; 5. Convert the data to JSON; 6. Use the encoding conversion library.

Notepad is a free text editor for Windows, which offers a variety of features such as: 1) syntax highlighting, 2) autocomplete, 3) macro recording, 4) plug-in extensions, 5) customizable interfaces and settings.
