search
HomeBackend DevelopmentC#.Net TutorialIs Warning in C language tuned or not?
Is Warning in C language tuned or not?Nov 22, 2016 pm 05:53 PM
c language

In fact, most C language engineers do not adjust Warning, but if you are a bitch like me, your hands will feel uncomfortable if you do not adjust it, your heart will feel itchy if you do not adjust it, and you will not be able to sleep well if you do not tease Warning. So let me tell you about Warning’s teasing experience.

First of all, before teasing Warning, we have to ask Error away. In other words, adjust Error first. After getting rid of all the Errors, there is no guarantee that the program will be correct, right? There are also some bugs that do not report Error. Although the bug does not prevent us from teasing Warning. But when I want to tease my little lady, how can I enjoy it when outsiders are watching?

Of course, bugs are often not repairable (in Yuko's words, "There is an old saying in China that is to find fault with the egg"), so let him observe some cheap bugs that do not affect the normal use of the program.

If some new programmers don’t know how to get rid of Error, then let me tell you something.

Error is generally caused by syntax errors. Common mistakes are usually spelling errors (too anxious to tease the little lady, brother, you can't press so fast), and there is no semicolon or semicolon is replaced by a comma. Of course, there are also problems with some "virgins" who can also punctuate Chinese. Report an error.

Of course, we often encounter some strange Errors. These kind of people are just looking for trouble. Check to see if there is any problem with the Chinese path. Some Errors can even be resolved by reopening the compiler. It really doesn’t work. Baidu, Google, Bing, etc. (Google still seems to need to be translated *qiang. I am used to using Bing. I have my own habits. Indeed, many people are using Google. It is recommended for beginners to use Baidu. Common Errors for beginners have been answered badly in Baidu. After all, Google It seems that you still have to turn the *qiang now. A bitch like me doesn't like to turn the *qiang)

Well, gentlemen, let's start taking off your belts.

First tease the ones that can be deleted. Sometimes a variable or function is declared and then never used. This is a common warning bitch, and my experience is to delete it. Even if some variables are things that you know will be used in subsequent upgrades. If you are not completely sure that it is necessary to reserve it, then we will discuss the issue in the next edition. Of course, if the declared function has been written but is useless, it can be collected and kept for future use, but if it has nothing to do with the program, it is better to delete it. Although my general approach is to only delete multiple-declared variables and not delete multiple-declared functions.

There is no variable to accept the return value. The return value of some non-empty functions is almost meaningless. It returns 1 on success and 0 on failure. This kind of return value may be useful if it is set in a branch. In fact, people originally wrote that function to facilitate branching. So since it's not in the branch. If this value is of no use, then this little bitch should be relegated to the sidelines. Pretend not to see it.

The function of a certain header file is called but the header file is not included.

For example: warning: type mismatch with previous implicit declaration

implicit declaration of function '***'

Just include the header file.

The list and the call do not correspond to too few arguments for format

For example: printf("%4d %4d",a);

In this way, either add one. Did you feel that there was a value that was always not displayed? I thought it was a bug. Hehe

Of course, there are some people who typed one more because their hands were shaking, so I’ll delete it.

Logical operator or/and The range of both sides of the expression is not known.

My habit is to put parentheses on both sides of or and and, so I rarely encounter this warning. After all, when I encounter this, I have to analyze the logical relationship at the time, which is quite time-consuming. It is better to develop good habits before. . Of course, if you insist on keeping it for fun, there's nothing I can do about it. Then you should quickly close the door and live a world of two with your warning lady.

Operations are meaningless on values

For example, you declare int *p;

and then you declare *p++;

I think you mean (*p)=(*p)+1;

Take a look at what you wanted to express at that time.

redefined, this means declared multiple times. Then just declare it once. Use #ifndef to avoid this situation cleverly.

The if branch or the while loop cannot be executed. You define unsigned and then use an if to determine whether it is a negative number. Delete it if you need to.

Another warning is that the parameter types are inconsistent, so force type conversion is required.

No matter how you tease it, you'd better change one step and recompile and run it. The principle is that no errors or new bugs can occur during the process of teasing Warnings.

I wish all single men good luck in seducing the warning lady. I will go home and do something embarrassing with my husband.


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
(超详细)VScode中配置C语言环境的方法(超详细)VScode中配置C语言环境的方法Dec 05, 2022 pm 07:05 PM

VScode中怎么配置C语言环境?下面本篇文章给大家介绍一下VScode配置C语言环境的方法(超详细),希望对大家有所帮助!

c语言中node是什么意思c语言中node是什么意思Jul 06, 2022 pm 03:51 PM

在C语言中,node是用于定义链表结点的名称,通常在数据结构中用作结点的类型名,语法为“struct Node{...};”;结构和类在定义出名称以后,直接用该名称就可以定义对象,C语言中还存在“Node * a”和“Node* &a”。

c语言怎么将数字转换成字符串c语言怎么将数字转换成字符串Jan 04, 2023 pm 03:20 PM

c语言将数字转换成字符串的方法:1、ascii码操作,在原数字的基础上加“0x30”,语法“数字+0x30”,会存储数字对应的字符ascii码;2、使用itoa(),可以把整型数转换成字符串,语法“itoa(number1,string,数字);”;3、使用sprintf(),可以能够根据指定的需求,格式化内容,存储至指针指向的字符串。

c语言开根号运算符是什么c语言开根号运算符是什么Mar 06, 2023 pm 02:39 PM

在c语言中,没有开根号运算符,开根号使用的是内置函数“sqrt()”,使用语法“sqrt(数值x)”;例如“sqrt(4)”,就是对4进行平方根运算,结果为2。sqrt()是c语言内置的开根号运算函数,其运算结果是函数变量的算术平方根;该函数既不能运算负数值,也不能输出虚数结果。

c语言数组如何初始化c语言数组如何初始化Jan 04, 2023 pm 03:36 PM

C语言数组初始化的三种方式:1、在定义时直接赋值,语法“数据类型 arrayName[index] = {值};”;2、利用for循环初始化,语法“for (int i=0;i<3;i++) {arr[i] = i;}”;3、使用memset()函数初始化,语法“memset(arr, 0, sizeof(int) * 3)”。

c语言合法标识符的要求是什么c语言合法标识符的要求是什么Aug 27, 2020 pm 01:47 PM

c语言合法标识符的要求是:1、标识符只能由字母(A~Z, a~z)、数字(0~9)和下划线(_)组成;2、第一个字符必须是字母或下划线,不能是数字;3、标识符中的大小写字母是有区别的,代表不同含义;4、标识符不能是关键字。

c语言中源文件编译后生成什么文件c语言中源文件编译后生成什么文件Nov 23, 2022 pm 07:44 PM

c语言编译后生成“.OBJ”的二进制文件(目标文件)。在C语言中,源程序(.c文件)经过编译程序编译之后,会生成一个后缀为“.OBJ”的二进制文件(称为目标文件);最后还要由称为“连接程序”(Link)的软件,把此“.OBJ”文件与c语言提供的各种库函数连接在一起,生成一个后缀“.EXE”的可执行文件。

c语言中*p和p的区别是什么c语言中*p和p的区别是什么Nov 29, 2022 pm 06:03 PM

区别:1、表示的含义不同,“*p”表示此指针指向的内存地址中存放的内容,“p”表示一个指针变量的名字,指此指针变量所指向的内存地址。2、输出的格式不同,“*p”输出的一般是一个和指针类型一致的变量或者常量,“p”输出的是一个16进制数, 输出一个指针的地址。3、功能不同,“*p”是让程序去那个地址取出数据,“p”用于存放的是地址。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment