摘要: 1. Directory structure Many times with large projects, in order to keep things neat and orderly, source and include files are distributed across sever 阅读全文
posted @ 2020-05-16 01:56 Jasper2003 阅读(179) 评论(0) 推荐(0)
摘要: 1. What dose it mean? Hand-tracing is a simulation of code execution in which you step through instructions and track the values of the variables 2. H 阅读全文
posted @ 2020-05-16 01:35 Jasper2003 阅读(232) 评论(0) 推荐(0)
摘要: 1.Introduction The Valgrind tool suite provides a number of debugging and profiling tools that help you make your programs faster and more correct. Th 阅读全文
posted @ 2020-05-16 01:20 Jasper2003 阅读(189) 评论(0) 推荐(0)
摘要: In this article, let us discuss how to debug a c program using gdb debugger in 6 simple steps. Write a sample C program with errors for debugging purp 阅读全文
posted @ 2020-05-16 01:11 Jasper2003 阅读(119) 评论(0) 推荐(0)
摘要: 1.typedef: The typedef is used to give data type a new name. For example, // After this line BYTE can be used // in place of unsigned char typedef uns 阅读全文
posted @ 2020-05-16 00:58 Jasper2003 阅读(131) 评论(0) 推荐(0)
摘要: A stub is just an empty function. It's a quick way to create a skeleton of your final program. You may add the print output to ensure that all your st 阅读全文
posted @ 2020-05-16 00:46 Jasper2003 阅读(190) 评论(0) 推荐(0)
摘要: COMMON OPERATORS IN C Unary Operators: take only one argument e.g. unary -, unary +, ++, --, ! (-2), (+2), a++, a--, !done Binary Operators: take two 阅读全文
posted @ 2020-05-16 00:29 Jasper2003 阅读(210) 评论(0) 推荐(0)