摘要: 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 阅读(198) 评论(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 阅读(176) 评论(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 阅读(112) 评论(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 阅读(124) 评论(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 阅读(173) 评论(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 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Function prototype in C programming: Importance Function prototype in C is used by the compiler to ensure whether the function call matches the return 阅读全文
posted @ 2020-05-15 23:42 Jasper2003 阅读(112) 评论(0) 推荐(0) 编辑
摘要: Preprocessor programs provide preprocessors directives which tell the compiler to preprocess the source code before compiling. Examples of some prepro 阅读全文
posted @ 2020-05-15 23:30 Jasper2003 阅读(156) 评论(0) 推荐(0) 编辑
摘要: a.Vim has two mode . 1. Insert mode (Where you can just type like normal text editor. Press i for insert mode) 2. Command mode (Where you give command 阅读全文
posted @ 2020-05-15 10:22 Jasper2003 阅读(92) 评论(0) 推荐(0) 编辑
摘要: Mac In order to copy files you will use the command scp a. When copying files from your computer to zeus this will be done in the form scp <origin_loc 阅读全文
posted @ 2020-05-15 09:59 Jasper2003 阅读(128) 评论(0) 推荐(0) 编辑