Comparison of C++, Java, Python, Ruby and MATLAB Using Object Oriented Example _comparelanguages
标签: comparelanguages Comparison Oriented Example
上传时间: 2014-01-09
上传用户:wab1981
This application note gives an example for microcontroller C code. It includes code for: Readout of Humidity (RH) or Temperature (T) with basic error handling Calculation of RH linearization and temperature compensation Access to status register Dewpoint calculation from RH and T UART handling
标签: code microcontroller application for
上传时间: 2013-12-22
上传用户:hewenzhi
Setting up an ADOCE project using Visual C++ 6.0 is rather simple. Assuming that you have downloaded and installed the ADOCE SDK from Microsoft, you are ready to use it in your Windows CE Database applications. The sample that I have provided is a *very* simple one illustrating how to instantiate the proper COM objects, and the basics of how to interface with them (in a very simple example)
标签: downloaded Assuming Setting project
上传时间: 2015-01-16
上传用户:阳光少年2016
一本关于C++的书籍,包含了不少example
标签: 书籍
上传时间: 2015-03-07
上传用户:bakdesec
Addressbook using double-linked list. This example shows the use of a double-linked list by implementing an addressbook for the console. It has features like inserting, searching(linear), sorting(bubble sort), deleting and load/save to a file. I wrote this during my study of Applied Computer Science so it s intended mainly for students who want to know about some advanced programming techniques in C. The Code was compiled with MSVC++ 6.0 but it should compile with any ANSI-compliant compiler.
标签: double-linked list Addressbook implemen
上传时间: 2014-01-24
上传用户:asddsd
OXCC is a multipass, interpreting C compiler with several language extensions. It generates an Architecture Neutral Format (ANF) output and comes with a couple of example back ends. Programmers are expected to write additional back ends for their specific needs.
标签: interpreting extensions generates multipass
上传时间: 2015-04-12
上传用户:大三三
prolog 找路例子程序: === === === === === === Part 1-Adding connections Part 2-Simple Path example | ?- path1(a,b,P,T). will produce the response: T = 15 P = [a,b] ? Part 3 - Non-repeating path As an example, the query: ?- path2(a,h,P,T). will succeed and may produce the bindings: P = [a,depot,b,d,e,f,h] T = 155 Part 4 - Generating a path below a cost threshold As an example, the query: ?- path_below_cost(a,[a,b,c,d,e,f,g,h],RS,300). returns: RS = [a,b,depot,c,d,e,g,f,h] ? RS = [a,c,depot,b,d,e,g,f,h] ? no ==================================
标签: Part connections example prolog
上传时间: 2015-04-24
上传用户:ljt101007
VS1002D ADPCM RECORDING INSTRUCTIONS v 1.0 (C) 2004-09-23 VLSI SOLUTION OY This is a software package to patch VS1002d ADPCM recording capability. It is explained in VS10XX Application Notes, available at http://www.vlsi.fi/download/ See also source code src/microcontrol.c for example.
标签: INSTRUCTIONS RECORDING SOLUTION softwar
上传时间: 2014-01-05
上传用户:894898248
在C语言中,可以用keep ( )函数将程序驻留内存。这个函数有两个参数:status和size。size为驻留内存长度,可以用size=_SS+_SP/16-_psp得到,当然这也是一种估算的方法,并不是精确值。函数执行完以后,出口状态信息保存在status中。比如,对于上面的例子,将“geninterrupt (0x60) ”改写成“keep(0,_SS+_SP/16-_psp) ”后再执行程序,这一段程序就被驻留,此后在其它的任何软件或程序设计中,只要用到了60H号中断,就会在屏幕上显示“This is an example!”的字样。要恢复系统对60H号中断的定义,只能重新启动计算机。
标签: C语言
上传时间: 2015-05-01
上传用户:yd19890720
UART I/O and Memory Allocation Example for GNU The project GNU_IODemo shows how to use memory allocation routines (malloc) and char I/O (printf, scanf) via a serial interface with the GNU toolchain. The I/O functions are adapted for the Analog Devices ADuC7000 series using the SERIAL.C module. The example also shows the efficiency of the Keil CA ARM Compiler run-time library which is tuned for single chip systems.
标签: Allocation GNU_IODemo Example project
上传时间: 2015-05-04
上传用户:Amygdala