Fledgling Xiao Li's 102nd blog talk about function pointers

Function pointer digression A function is a function A pointer is a pointer Pointer function is a function Function pointers are pointers The essence of function pointer The essence of function pointer is pointer, the essence of pointer is address, and the object pointed to by function pointer is a function. The function pointer is generally ...

Posted by SsirhC on Thu, 10 Feb 2022 00:38:29 +0100

Linked list related interview questions Chapter 2

Catalogue of series articles preface 1, Circular linked list Circular linked list 1. Title Description Given a linked list, judge whether there are links in the linked list.If there is a node in the linked list that can be reached again by continuously tracking the next pointer, there is a ring in the linked list. In order ...

Posted by edtlov on Wed, 09 Feb 2022 22:19:31 +0100

#Does the string on the fourth day of C language practice contain supplementary questions

Does the string on the fourth day of C language practice contain supplementary questions Title Description: Suppose there is A string A composed of various letters and another string B. the number of letters of B in the string is relatively small. What is the fastest way to find all the letters in small string B in large string A? For ...

Posted by filch on Wed, 09 Feb 2022 17:41:33 +0100

Chapter 4 stack and queue

Chapter 4 stack and queue A stack is a linear table that is restricted to insert and delete operations only at the end of the table. We call the end that allows insertion and deletion as the top of the stack, the other end as the bottom of the stack, and the stack without any data elements as an empty stack. Stack is also called last in first ...

Posted by BillyBoB on Wed, 09 Feb 2022 12:59:52 +0100

Blue Bridge Cup special topic "C language"

ย  I Year string Title Linkhttps://www.lanqiao.cn/problems/605/learning/ ย  Xiao Ming uses the letter A to correspond to the number 1, B to correspond to 2, and so on, and Z to correspond to 26. For numbers above 27, Xiaoming corresponds with a string of two or more bits, for example, a corresponds to 27, AB corresponds to 28, AZ correspon ...

Posted by phpmoron on Wed, 09 Feb 2022 08:45:17 +0100

Linux anti debugging notes

Following the above article, continue to discuss the anti debugging technology of Linux. 7: Check the running status of the process The debugger can debug by attach ing to an existing process. In this case, the parent process of the debugged process is not a debugger. In this case, we can directly check the running state of the process to de ...

Posted by Runilo on Tue, 08 Feb 2022 22:48:28 +0100

OpenSSL3.0 learning 15 provider - kem CSDN creation punch in

๐Ÿ“’ Blog home page: Actor's blog ๐ŸŽ‰ Welcome to pay attention ๐Ÿ”Ž give the thumbs-up ๐Ÿ‘ Collection โญ Leave a message ๐Ÿ“ โค๏ธ Look forward to communicating together! ๐Ÿ™ The author's level is very limited. If you find an error, please let me know. Thank you! ๐ŸŒบ If you have any questions, you can communicate by private letter!!! ๐ŸŒบ outline # ...

Posted by snicolas on Tue, 08 Feb 2022 22:46:28 +0100

Necessary basic knowledge from c to c + +

First of all, we must know that c + + is compatible with c syntax, which syntax is suitable for use, and which one Before we start learning a language, type a line of hello world in c + + syntax #include<ostream> using namespace std; int main() { cout << "hello word" << endl; return 0; } Here we can see that c + + needs ...

Posted by biodrux on Tue, 08 Feb 2022 20:38:26 +0100

C language - structure I

This article is a preliminary study of the structure. It is divided into the following four parts. 1. Declaration of structure type 2. Structure initialization 3. Visits of structural members 4. Structural transmission parameters 1. Declaration of structure type The objects we want to describe in life are generally complex objects. For ex ...

Posted by bruceg on Tue, 08 Feb 2022 20:01:08 +0100

Function parameter passing, pointer, structure and review of cin and cout

Function parameter transfer When an array is used as a function parameter, the length of the first dimension of the array in the parameter does not need to be filled in, such as void a(int a[]) { a[1]=1; a[2]=2; } However, if it exceeds one dimension, such as a two-dimensional array, the length must be written at the beginning of the ...

Posted by deerly on Tue, 08 Feb 2022 07:16:25 +0100