This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1、编写一个程序判断当前系统的字节顺序。 | |
| 2、请编写一个程序输出以下变量的字节表示(由低位到高位),需要给出16进制表示的输出结果。 | |
| float a = 2.3; | |
| long b = 1; | |
| double c = 1.0; | |
| struct st{ | |
| int num; | |
| char name[2]; | |
| } s; | |
| 3、请结合本课程介绍内容阐述SYN flooding攻击的原理,并提出抵御的方法? |
NewerOlder