C语言高级编程教程,是一个很不错的C语言教程,有兴趣的伙伴们抽时间可以看一下把。
2022-05-17 11:09:19 23.42MB C语言
1
mq4开发语言说明手册,详细的开发代码。 函数说明 常量说明
2022-05-17 09:49:40 599KB mq4 EA
1
第1章 C:穿越时空的迷雾 1.1 C语言的史前阶段 1.2 C语言的早期体验 1.3 标准I/O库和C预处理器 1.4 K&RC 1.5 今日之ANSIC 1.6 它很棒,但它符合标准吗 1.7 编译限制 1.8 ANSIC标准的结构 1.9 阅读ANSIC标准,寻找乐趣和裨益 1.10 “安静的改变”究竟有多少安静 1.11 轻松一下——由编译器定义的Pragmas效果 第2章 这不是Bug,而是语言特性 2.1 这关语言特性何事,在Fortran里这就是Bug呀 2.2 多做之过 2.3 误做之过 2.4 少做之过 2.5 轻松一下——有些特性确实就是Bug 2.6 参考文献 第3章 分析C语言的声明 3.1 只有编译器才会喜欢的语法 3.2 声明是如何形成的 3.3 优先级规则 3.4 通过图表分析C语言的声明 3.5 typedef可以成为你的朋友 3.6 typedefintx[10]和#definexint[10]的区别 3.7 typedefstructfoo{...foo;}的含义 3.8 理解所有分析过程的代码段 3.9 轻松一下——驱动物理实体的软件 第4章 令人震惊的事实:数组和指针并不相同 4.1 数组并非指针 4.2 我的代码为什么无法运行 4.3 什么是声明,什么是定义 4.4 使声明与定义相匹配 4.5 数组和指针的其他区别 4.6 轻松一下——回文的乐趣 第5章 对链接的思考 5.1 函数库、链接和载入 5.2 动态链接的优点 5.3 函数库链接的5个特殊秘密 5.4 警惕Interpositioning 5.5 产生链接器报告文件 5.6 轻松一下——看看谁在说话:挑战Turing测验 第6章 运动的诗章:运行时数据结构 6.1 a.out及其传说 6.2 段 6.3 操作系统在a.out文件里干了些什么 6.4 C语言运行时系统在a.out里干了些什么 6.5 当函数被调用时发生了什么:过程活动记录 6.6 auto和static关键字 6.7 控制线程 6.8 setjmp和longjmp 6.9 UNIX中的堆栈段 6.10 MS-DOS中的堆栈段 6.11 有用的C语言工具 6.12 轻松一下——卡耐基-梅隆大学的编程难题 6.13 只适用于高级学员阅读的材料 第7章 对内存的思考 第8章 为什么程序员无法分清万圣节和圣诞节 第9章 再论数组 第10章 再论指针 第11章 你懂得C,所以C++不在话下 附录A 程序员工作面试的秘密 附录B 术语表
2022-05-16 15:35:14 114.3MB C专家编程
1
2019NOC编程猫创新编程全国大赛初赛试题Python题目解析
C语言网络编程源代码,课程设计专用,VC++环境下使用
2022-05-07 13:55:34 5KB C语言
1
一、屏幕显示模式 二、窗口内文本的输入函数
2022-05-03 14:31:11 87KB C语言 图形编程
1
VIVADO经常使用TCL脚本对FPGA进行调试,通过JTAG转AXI对内部模块进行控制,但是TCL语言书籍比较少,这边是一个英文的TCL语言学习书籍. Preface 1 Chapter 1: The Tcl Shell 5 Introduction 5 The Tcl shell 6 Writing to the Tcl console 7 Mathematical expressions 8 Tcl expr operands 8 Mathematical functions 11 Computing mathematical expressions 12 Referencing files in Tcl 13 Variables 15 Command line arguments 17 Chapter 2: Using the Building Blocks Control Constructs 21 Introduction 21 Controlling flow with the if statement 23 Looping with for 24 Looping with foreach 25 Looping with while 26 Continuing a procedure 27 Breaking out of a procedure 28 Nested looping 29 Chapter 3: Error Handling 31 Introduction 31 Using the catch command 32 Using the eval command 34 Using the error command 35 Error handling procedure 36 Chapter 4: Handling String Expressions 39 Introduction 40 Appending to a string 41 Formatting a string 42 Matching a regular expression within a string 44 Performing character substitution on a string 46 Parsing a string using conversion specifiers 47 Determining the length of a string 49 Comparing strings 50 Comparing a string of characters 51 Locating the first instance of a character 52 Locating the index of a character 53 Determining the class of a string 54 Locating the last instance of a string 56 Determining the size of a string 57 Replacing values within a string 57 Locating a pattern within a string 58 Returning a range of characters from a string 59 Creating a string of repeated characters 60 Replacing ranges of characters contained within a string 60 Creating a reverse string 61 Converting a string to lowercase 62 Converting a string to title 62 Converting a string to uppercase 63 Trimming a string 64 Trimming leading whitespace 64 Trimming trailing whitespace 65 Locating the word end 65 Locating the word start 66 Performing variable substitution 67 Chapter 5: Expanding String Functionality Using Lists 69 Introduction 70 Creating a list 70 Joining two lists 71 Joining list elements 72 Appending list elements 73 Assigning list elements to variables 73 Retrieving an element from a list 74 Inserting elements into a list 75 Determining the number of elements 75 Getting a list element 76 Repeating elements 77 Replacing elements 77 Reversing elements 78 Searching a list 79 Editing a list 81 Sorting a list 82 Splitting a string into a list 83 Chapter 6: The Tcl Dictionary 85 Introduction 85 Creating a dictionary 86 Appending to a dictionary 87 Determining if a key exists 88 Filtering a dictionary 88 Searching a dictionary 90 Getting a record 91 Incrementing a value 91 Getting the dictionary structure 92 Getting a list of keys 93 Appending to an existing record 94 Merging two dictionaries 94 Creating a blank dictionary structure 95 Updating variables from a dictionary 96 Determining the size of a dictionary 96 Getting all records 97 Assigning values 97 Chapter 7: File Operations 99 Introduction 99 Opening a file 100 Configuring a file 102 Opening a command pipeline 104 Writing a file 106 Reading a file 106 Closing a file 107 File handling 108 Chapter 8: Tk GUI Programming with Tcl/Tk 111 Introduction 111 Creating a widget 113 Writing to the console 115 Setting the attributes of the window through window manager 116 Creating an additional window 117 Destroying a window 119 Creating a custom dialog 121 Chapter 9: Configuring and Controlling Tk Widgets 123 Introduction 123 Creating a frame widget 124 Creating a label widget 126 Creating an entry widget 128 Creating a button widget 130 Creating a listbox widget 133 Creating an image 139 Creating a simple form 140 Chapter 10: Geometry Management 143 Introduction 143 Controlling layout with the pack command 144 Controlling layout with the grid command 147 Combining pack and grid 151 Creating an address book interface 152 Chapter 11: Using Tcl Built-in Dialog Windows 157 Introduction 157 Displaying a message box 158 Displaying a confirmation dialog 159 Displaying the color picker 161 Displaying the directory dialog 162 Displaying the file selection dialog 164 Selecting a directory and file 166 Chapter 12: Creating and Managing Menus 169 Introduction 169 Creating a menu 170 Adding menu buttons 175 Displaying a pop-up menu 178 Data entry application 180 Chapter 13: Creating the Address Book Application 183 Introduction 183 Creating the Address Book application 184 Adding a record 188 Navigating records 191 Deleting a record 192 Finding a record 195 Full listing 196
2022-05-02 16:50:11 1.73MB TCL TK
1
结合低密度奇偶校验码(LDPC)的译码算法和最新的现场可编程门阵列(FPGA)技术,提出了一种对低密度 奇偶校验码的最小和算法(MSA)进行C 语言现场可编程门阵列编程实现的新方案。基于Xilinx 公司的Virtex2 系列芯片 XC2V2000,设计实现了一种码长为250,码率为0.5 的(3,6)低密度奇偶校验码译码器,并给出了寄存器传输级(RTL)协同 仿真系统结构,证实了低密度奇偶校验码具有良好的纠错性能,为软件工程师开发基于现场可编程门阵列的嵌入式系统提供 了新的思路。
2022-05-01 10:55:17 1.05MB LDPC FPGA
1
为了读者学习和使用的方便,本书附赠一张CD-ROM光盘。光盘中包含了本书各章中列出的3种语言(ASM51汇编语言、C51高级语言和Turbo C2.0高级语言)的全部程序。对ASM51汇编语言和C51高级语言来说,还给出了对应的项目工程文件。这样读者只须把自己感兴趣的程序以及对应的项目工程文件拷入电脑,进入集成开发环境,调入工程文件和C51程序(或ASM51汇编语言程序)。如果硬件也一致(若硬件不一致,则须通过修改程序中的有关部分,使之一致),那么就可以直接编译、汇编和链接,进行仿真。 光盘中程序的编排与本书各章顺序相同,要用本书第几章的程序就到光盘上同一章去找。要了解某芯片与单片机连接方法,请到“有关芯片与单片机连接电原理图”题目下去找。电原理图是在制图软件Protel99 SE下画的,其扩展名为“sch”。使用时,只要在Protel99 SE环境下直接打开或导入均可。
1
C语言与MATLAB接口编程与实例,大量实例教你如何接口编程,错过后悔啊!
2022-04-17 02:46:08 8.78MB MATLAB C语言 接口编程
1