Games: minesweeping (implemented in C language)

Game introduction About mine sweeping, it can be said that it is a classic in educational games. Then briefly introduce mine sweeping. The mine sweeping interface will be more than one × Many squares, in which thunder is placed, we choose one of the squares. If it is thunder, it will be killed; If it's not a mine, print the number of ...

Posted by bagsobrands on Sun, 02 Jan 2022 07:50:30 +0100

Advanced Language Ninth Job

1. Student Information Title Description Now I want to make up a list of student achievement points. Chain list node content includes student name, student number, grade point The input is a list of the names, numbers, and performance points of a group of students, stored in a chain. Delete a student node whose score is less than the averag ...

Posted by atomm on Sun, 02 Jan 2022 00:58:05 +0100

Student comprehensive evaluation system

Title Requirements: 2. Student comprehensive evaluation system The information of each student is: student number, name, gender, contact number, C language, higher mathematics and foreign language, average test score, test ranking, students' mutual score, moral score, teacher's score, total score of comprehensive evaluation and comprehensive ...

Posted by stockdalep on Sat, 01 Jan 2022 17:49:19 +0100

Explanation of array in the early stage of C language

catalogue Insert sort explanation Two dimensional array Initialization of two-dimensional array Access to two-dimensional arrays n-dimensional array Character array Character arrays and strings Input and output of character array Character input / output String input / output Simple use of string functions Comprehensive use of strin ...

Posted by Millar on Sat, 01 Jan 2022 11:18:17 +0100

[experience and popular science] practical analysis of compilation problems that may be encountered in C engineering code and their solutions

1 Preface At the beginning of this month, I sorted out the technical articles: The article [gcc compilation optimization series] shows you how C code is compiled , I have received praise from several friends; At the same time, I was particularly surprised to receive the senior leaders of the forum aozima I'm really honored to recommend a ...

Posted by Pr0digy on Fri, 31 Dec 2021 23:35:30 +0100

Summary of data types, operators, and expressions

%c , character% d , integer% f decimal 2.1} cited examples /* output: "programming is fun." */ #include<stdio.h> int main(void) { printf("programming is fun."); return 0 } Operation results: programming is fun. Example 2: ball volume and surface area #include<stdio.h> #define PI 3.14159 void main() {    int r;     float ...

Posted by lajollabob on Fri, 31 Dec 2021 21:44:23 +0100

Address book management system (Concise Course Design)

Address book management system - simple version 1, Design requirements Program design format requirements are as follows: (1) It is required to implement the design in a multi text way. (2) It is required to implement structured design in each document. (3) Each module is treated as a separate C file. (4) Each function of the system is reali ...

Posted by Elizabeth on Fri, 31 Dec 2021 19:51:22 +0100

The most complete and strongest number guessing game in history

This article is completely original!!!!! This article is completely original!!!!! This article is completely original!!!!! If similar, please contact the author catalogue preface Code list Code analysis summary preface I haven't updated my blog because of the end of the school term. It has been more than a month since the last blog ...

Posted by scrappy1855 on Fri, 31 Dec 2021 17:23:10 +0100

Linux_ Small projects in phase C

Random roll call device based on C command line Project description Using C language, make a roll call program running on the command line. When the program runs, it can specify the roster file of the class. After running, the process of randomly selecting names is displayed on the interface. The speed is from fast to slow, and gradually f ...

Posted by Pointybeard on Fri, 31 Dec 2021 06:02:28 +0100

[about CMake, CMakeLists.txt] related knowledge and ORB_SLAM3-ROS-CMakeLists notes

preface Fill the abyss of your knowledge. Everything is a variable. What the CPU needs to access memory is the address, not the variable name and function name! Variable names and function names are just mnemonics of addresses. When the source files are compiled and linked into executable programs, they will be replaced with addresses. ...

Posted by tuuga on Fri, 31 Dec 2021 00:33:31 +0100