10 2018 档案
摘要:1. git clone git clone https://github.com/angular/quickstart ng4-quickstart 2. 双向绑定: 前端:<input type="text" ng-model="name"> <h1>Hello {{name}} {{addre
阅读全文
摘要:一. 快速上手 1. 逻辑上删除一段程序: #if 0 statements #endif 2. printf函数:%d十进制整型值、%o八进制、%x十六进制、%g浮点值、%c字符、%s字符串 scanf函数:%d整型值、%ld长整型、%f浮点数、%lf双精度、%c字符、%s字符串 3. char
阅读全文
摘要:一. 关键字 1. long在32位机器上占用4个字节。 2. 寄存器变量不能超过1个整型变量的长度且不能用&取地址 3. 变量命名规则:bit btVariable, boolean bVariable, char cVariable, void *vpVariable, struct A stV
阅读全文