博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
指针数组 数组指针 指针函数 函数指针
阅读量:2388 次
发布时间:2019-05-10

本文共 331 字,大约阅读时间需要 1 分钟。

下列定义语句中,错误的是

正确答案: A   你的答案: A (正确)

int px*;
char*acp[10];
char(*pac)[10];
int(*p)();

int   *p[4];         //指针数组。  是个有4个元素的数组, 每个元素的是指向整型的指针 。(数组的每个元素都是指针) 

int   (*p)[4];       //数组指针。 它是一个指针,指向有4个整型元素的数组。                 (一个指针指向有4个整型元素的数组) 
int *func(void);     //指针函数。 无参函数, 返回整型指针。              (函数的返回值为int*) 
int (*func)(void);   //表示函数指针,可以指向无参, 且返回值为整型指针的函数。       (函数的返回值为int)

转载地址:http://hwiab.baihongyu.com/

你可能感兴趣的文章
Preventing Cross-site Scripting Attacks
查看>>
WASC Distributed Web Honeypots Project Update
查看>>
安装pydev到eclipse
查看>>
[WAF]apache和modsecurity的安装
查看>>
写给换工作和找工作的同学
查看>>
Island Hopping the SpiderLabs Way
查看>>
Top Ten Web Protection Techniques of 2011
查看>>
Faster Blind MySQL Injection Using Bit Shifting
查看>>
Safely Dumping Hashes from Live Domain Controllers
查看>>
PHP CGI Argument Injection
查看>>
sgx模拟器
查看>>
SGX相关资源
查看>>
nessus 购买地址
查看>>
Google Security Architecture
查看>>
xssf-cross-site-scripting-framework-v30
查看>>
OAuth2 Security
查看>>
Hacking Java Applications using JavaSnoop
查看>>
Yes Small Companies Can – and Should – Build Secure Software
查看>>
分布式海量日志采集、聚合和传输系统:Cloudera Flume
查看>>
开源堡垒机参考
查看>>