当前位置:首页
> Luz 第3009页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论PROGRAMMING:Pointer array
Analyze the code, understand the pointer array```int a[3][3]={1,2,3,4,5,6,7,8,9};int *pa[3]={a[0],a[1],a[2]};void print(…
PROGRAMMING:Pointer function (code analysis)
```Analyzing code to understand pointer function#includechar *day_ name(int n); // Function declarationint main(){ in…
PROGRAMMING:Python - splitting and summation of multiline strings
Write a program to count the sum of several integers in each line of string. The separator between integers in each line…
PROGRAMMING:Pointer function code training
```Write functionint *find(int a[],int n,int x)The function is to find the first integer x in the array a with n element…
PROGRAMMING:Pointer code analysis of pointing function
```Code analysis pointer to function code analysisAnalyze the following code to understand function pointer variables.#i…
PROGRAMMING:Pointer to function
Analyze the following code to understand the pointer to the function```#includeint max(int a,int b){if(a˃b) return a;els…
PROGRAMMING:Nameless array
Input 10 integers and output in reverse order( Do not define the array, using dynamic memory implementation)###Input exa…
PROGRAMMING:Null type pointer
```Code analysis null type pointer#include void init(void *p){int i;for(i=0; i˂10; i++){*(char*)p='A'+i; p+=sizeof(ch…
PROGRAMMING:Data sorting in dynamic memory
Read in integer n, then read in n integers, sort these n integers from small to large and output them( Can't define inte…
PROGRAMMING:Memory request (anonymous variable)
Read in some integers and output their squares( Without defining integer variable, it is realized by dynamic memory tech…