In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
Editor to share with you what is the use of the assert function in the c language. I hope you will get something after reading this article. Let's discuss it together.
1. Assert will determine whether the execution program needs to be terminated by checking the value of the expression expresion.
2. If the value of the expression expresion is false (that is, 0), it will first print the error message to the standard error stream stderr.
The program is terminated by calling the abort function. Otherwise, assert has no effect.
Example
# include # include # include int main (void) {FILE * fp; fp = fopen ("456.txt", "w"); / / Open a file in a writable manner, and create a file with the same name assert (fp) if it does not exist; / / so there is no error fclose (fp); fp = fopen ("123.txt", "r") / / Open a file as read-only. If it does not exist, it fails to open the file assert (fp); / / so there is an error fclose (fp); / / the program will never be executed here to return 0 } after reading this article, I believe you have a certain understanding of "what is the use of assert function in c language". If you want to know more about it, you are welcome to follow the industry information channel. Thank you for reading!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.