摘要:
计算机语言可以分为机器语言、汇编语言和高级语言 1.web page script language 网页脚本语言 2.Interpreted Languages 解释性语言 3.Hybrid Languages 混合型语言 4.Compiling Languages 编译型语言 5.Assembl 阅读全文
摘要:
C语言中的& 用法 1、是取地址符,用于指针赋值 & 返回变量的地址。 &a; 将给出变量的实际地址。 #include <stdio.h> int main() { int a = 2; int b,c; b = a; c = &a; printf("%d \n%d",b,c); return 0 阅读全文