-->
当前位置:首页 > Luz 第3009页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Pointer array

Luz5年前 (2021-05-10)443
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)

Luz5年前 (2021-05-10)416
```Analyzing code to understand pointer function#includechar *day_ name(int n); // Function declarationint main(){ in…

PROGRAMMING:Python - splitting and summation of multiline strings

Luz5年前 (2021-05-10)514
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

Luz5年前 (2021-05-10)344
```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

Luz5年前 (2021-05-10)402
```Code analysis pointer to function code analysisAnalyze the following code to understand function pointer variables.#i…

PROGRAMMING:Pointer to function

Luz5年前 (2021-05-10)504
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

Luz5年前 (2021-05-10)414
Input 10 integers and output in reverse order( Do not define the array, using dynamic memory implementation)###Input exa…

PROGRAMMING:Null type pointer

Luz5年前 (2021-05-10)462
```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

Luz5年前 (2021-05-10)465
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)

Luz5年前 (2021-05-10)383
Read in some integers and output their squares( Without defining integer variable, it is realized by dynamic memory tech…