Some one asked a question for studying C programming language on stackexachange.com. He got a bucket of recommanded project, which I reformed here. Reimplementing the famous library 1. the c standard library. string.h memchr, memcmp, memcpy, memmove,…
C预处理器执行宏替换.条件编译以及包含指定的文件.以#开头的命令行就是与处理器的对象.这些命令行的语法独立于语言的其他部分,它们可以出现在任何地方,其作用可延续到所在编译单元的末尾(与作用域无关).行边界是有实际意义的:每一行都将单独进行分析.对预处理器而言,记号可以是任何语言记号,也可以是类似于#include指令中表示文件名的字符序列.此外,所有未进行其他定义的字符都将被认为是记号.但是在预处理器指令行中,除空格.横向制表符以外的其他空白符的作用都是没有意义的. 以下摘自百度知道http:/…
//简单计算器 #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #include <math.h> #define MAXOP 100 //max size of operand or operator #define NUMBER '0' //sign of a number was found #define NAME 'n' //si…
运算符的优先级和结合性有明确的规定,但是,除少数例外情况外,表达式的求值次序没有定义,甚至某些有副作用的子表达式也没有定义. 也就是说运算符的定义保证了其操作数按某一特定的顺序求值,否则具体实现可以自由选择任意求值顺序,甚至可以交换求值次序.但是每个运算符 将其操作数生成的值结合起来的方式与表达式的语法分析方式是兼容的.(该规则废除了原先的一个规则:当表达式中的运算符在数学上满足交换律 和结合律时,可以对表达式重新排序) 以下按优先级从高到底: 1.指针生成: 2.初等表达式: 3.后缀表达式:…
首先说自动类型转换: 当一个运算符的几个操作数类型不同时,就需要吧他们转换位某种共同的类型.一般来说,自动转换把“较低”的类型转换为”较高“的类型.运算结果为较高的类型 以下是不严格的规则: 首先,如果任何一个操作数为long double类型,则将另外一个操作数转换为long double类型: 否则,如果任何一个操作数为double类型,则将另外一个操作数转换为double类型: 否则,如果任何一个操作数为float类型,则将另外一个操作数转换为float类型: 否则,对两个操作数进行整型提…
Awesome Courses  Introduction There is a lot of hidden treasure lying within university pages scattered across the internet. This list is an attempt to bring to light those awesome courses which make their high-quality material i.e. assignments, lect…
GPU端到端目标检测YOLOV3全过程(上) Basic Parameters: Video: mp4, webM, avi Picture: jpg, png, gif, bmp Text: doc, html, txt, pdf, excel Video File Size:  not more than 10GB batch=16, subdivisions=1 Resolution: 416 * 416, 320 * 320. Frame: 45f/s with 320 * 320. A…
Teach Yourself Programming in Ten Years——用十年教会自己编程 作者:Peter Norvig 译者:刘海粟 本文原文为:http://norvig.com/21-days.html 该翻译文档的PDF版可以在这里获得:http://download.csdn.net/source/2983778 为何万事都如此仓促? 随便走进一家书店,你就能看到<7天学会Java>以及各种万变不离其宗的书籍,形如:在数天或是数小时内学会Visual Basic.Wind…
https://talks.golang.org/2012/splash.article Go at Google: Language Design in the Service of Software Engineering Rob Pike Google, Inc. @rob_pike http://golang.org/s/plusrob http://golang.org Contents Abstract Introduction Go at Google Pain points De…
Today when taking a bath I got a good idea that it is an efficient and interesting way to learn a new programming language: (These days I learn Python from the Python manual and feel a little bored....) Learn programming by trying some little or larg…