lab_c!】的更多相关文章

#include<stdio.h> hi() { printf("hello world!\n"); } int main() { hi(); int i = hi(); printf("%d\n", i); /* 没有void的时候默认返回值为int, 结果i = 13 ???!!!??!?!?! */ } code 2: #include<stdio.h> int result(int x) { result = x * x; // c语…
goto语句在C语言中实现的就是无条件跳转,第二章一上来就介绍goto语句就是要通过goto语句来更加清楚直观的了解控制结构. 我理解的goto语句其实跟switch语句有相似之处,都是进行跳转.不同的是goto语句是进行无条件的跳转,执行到这一句的时候直接就跳转了,而switch语句是要进行一个判断之后才能进行跳转.例如: 下面是用switch语句写的一个程序 #include <stdio.h> int main(void) { char score; scanf("%c&quo…
Lab_C(config)# interface Ethernet0/0  ip address 192.168.30.2 255.255.255.0 router rip  network 172.16.0.0  network 192.168.30.0Lab_B(config)#   interface Ethernet0/0  ip address 192.168.30.1 255.255.255.0     interface Serial0/0  ip address 172.16.2…