In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/01 Report--
This article introduces the relevant knowledge of "how to solve the error problem of c language printing character garbled and char* character loop assignment". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
1. Print character garbled
# include # include char * SYM= "; void change () {char tmp [10] =" SYM "; printf ("% d\ n ", tmp); SYM=tmp;} int main (int argc, char * argv []) {change (); printf ("% d\ n ", SYM); printf ("% s\ n ", SYM); return 0;}
Solution:
Tmp [10] is the memory space allocated in the subfunction. When you return to the main function, you have to refer to that piece of memory that has been destroyed. The printed code must be garbled.
The main reason is that the space allocated by the sub-function is in the stack (the string content pointed to by tmp and tmp). After the end of the sub-function, the stack is destroyed and all the space is released.
If you change it to char * tmp, there will be no garbled code. The variable (tmp) in the function is still in the stack, but the string content pointed to by tmp is allocated in the heap.
After the end of the sub-function, the stack is destroyed and all the space is released. However, the content of the string pointed to by tmp still exists, and the address is stored in SYM, which can be accessed.
However, this part of the heap space is already unallocated space (junk space) and can be reallocated at any time. So it's accessible, but it's not secure.
If you must, define char tmp [10] outside the function.
2.charl * single character assignment
# include # include char* p = ""; int main () {int I; / / p = (char*) malloc (8); for
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.