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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Pointer and two dimensional array

Luz5年前 (2021-05-10)355
Analyze the following code to understand the pointer and two-dimensional array```#includeint main(){int a[3][4]={1,2,3,4…

PROGRAMMING:Pointer as function parameter (exchange variable)

Luz5年前 (2021-05-10)383
```#includeVoid swap (int * PA, int * Pb) {/ / exchange * PA and * PB//Please add the code here}int main(){int a,b;scanf…

PROGRAMMING:Pointer to achieve statistical number of words

Luz5年前 (2021-05-10)465
Input an English sentence (no more than 80 characters) in a line and output the number of words in the sentence. The wor…

PROGRAMMING:Nearest

Luz5年前 (2021-05-10)411
Program input positive integer n (n ˂ 100), then input n integers into the array, then input an integer x, and output th…

PROGRAMMING:Sorting by selection (function realization)

Luz5年前 (2021-05-10)431
Read in integer n, then read in n integers, store them in the array, sort them and output them. To sort an array, use a…

PROGRAMMING:String copy

Luz5年前 (2021-05-10)424
Write a custom function to copy the contents of a string (no more than 80 characters) to another character array. Main f…

PROGRAMMING:Character pointer

Luz5年前 (2021-05-10)405
```Analyze the following code to understand the application of character pointer#includeint main(){char *p;p="ABCDE";for…

PROGRAMMING:Character statistics

Luz5年前 (2021-05-10)390
Input a line of English sentence (no more than 80 characters), output the number of English letters, numbers and other c…

PROGRAMMING:String length

Luz5年前 (2021-05-10)431
Write a user-defined function to return the number of characters in a string, excluding '\ 0'. Input some strings in the…

PROGRAMMING:Character pointer array

Luz5年前 (2021-05-10)446
```Case expansion character pointer arrayPlease analyze the following code to understand the pointer array.#includechar…