当前位置:首页
> Luz 第3010页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论PROGRAMMING:Analysis of secondary pointer code
```Analysis of secondary pointer codeint main(){static char *ps[]={"Java","C","Objective-C","C++","C#","PHP"};char **pps…
PROGRAMMING:Secondary pointer
Analyze the following code to understand the secondary pointer.```#includeint main(){int n,*p,**pp;n=10; p=&n;…
PROGRAMMING:the first
Using structure type, input the names of two students and the scores of high-level language, data structure and algorith…
PROGRAMMING:Structure type
Analyze the following code to understand the use of struct types.```struct stu{int num;char name[20];char sex;double sco…
PROGRAMMING:Dynamic array (how much memory is required and how much memory is requested)
Input integer n, then input n integers, and output these n integers in reverse order( Do not define the array, using dyn…
PROGRAMMING:Simple address book
Program input integer n, and then enter the name and telephone number of n students. Finally, the output is in the form…
PROGRAMMING:Statistics average and fail
Enter the integer n, and then enter the student number, name and grade of n students. The final output of the total scor…
PROGRAMMING:Struct pointer
Analyze the following code to understand the structure pointer```#define FORMAT "Number=%d Name=%s Sex=%c Score=%lf\n"st…
PROGRAMMING:The structure pointer points to the structure array
Code analysis, understand the structure pointer to the structure array```Output structure array with pointer variable, p…
PROGRAMMING:Achievement statistics
```//Calculate the total score, average score and the number of failed students of a group.#includestruct stu{int num;ch…