CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 SCSI/ASPI 搜索资源 - main.c

搜索资源列表

  1. crt0

    0下载:
  2. 用C语言编写ARM程序时,执行的第一条指令,并不在main函数中。当我们生成一个C程序的可执行文件时,编译器总是在我们的代码前加一段固定的代码——crt0.o,它是编译器自带的一个文件。此段代码设置C程序的堆栈等,然后调用main函数。很可惜,在我们的裸板上,这段代码无法执行,所以我们得自己写一个。这段代码很简单,只有3条指令。-Using C language ARM program, the implementation of the first instruction is not in
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:157.88kb
    • 提供者:netsky
  1. GrammarAnalysis

    0下载:
  2. 一个很不错的C++语法分析器,主要使用的是LL1文法,可以自动判断是否为LL1文法,若是,可以对例句进行语法分析-A very good C++ parser, the main use of the LL1 grammar, can automatically determine whether the LL1 grammar, and if so, can listen to parse
  3. 所属分类:Compiler program

    • 发布日期:2016-05-22
    • 文件大小:200.97kb
    • 提供者:ma xiaolong
  1. test_ledmatrix8x8

    0下载:
  2. File list(time 2002041614~2009101810)(Click to check if it s the file you need, and recomment it at the bottom): C52_RAM .......\Last Loaded RAM.DBK .......\main.c .......\main.LST .......\main.OBJ .......\ram .......\RAM.DSN
  3. 所属分类:Compiler program

    • 发布日期:2017-11-19
    • 文件大小:19.73kb
    • 提供者:huu ai
  1. triangular

    0下载:
  2. making triangular number with c++ using integer #include<stdio.h> int triangular(int a) main() { int x printf("menghitung triangular bilangan\n") printf("masukkan bilangan x= ") scanf(" d",&x) triangular(x)
  3. 所属分类:Compiler program

    • 发布日期:2017-11-17
    • 文件大小:937.54kb
    • 提供者:thongthong
  1. PL0

    0下载:
  2. PL0文法编译器,对文法进行了扩充,主要增加了数组及结构体的功能,并用C语言实现,2000行。-PL0 grammar compiler, for grammar was expanded to increase the functionality of the main array and structure, and use the C language, probably around 2000 lines.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-15
    • 文件大小:7.61kb
    • 提供者:Deva
  1. C--Compiler

    0下载:
  2. C--编译器的实现代码 主要实现C--程序的语法错误 包括变量名、函数等的检查 YACC 和 Lex 在linux下编译通过 -C- compiler implementations code of the main C- syntax error process include variable names, functions, etc. Check YACC and Lex compile under linux
  3. 所属分类:Compiler program

    • 发布日期:2017-04-23
    • 文件大小:46.76kb
    • 提供者:mk
  1. Compile-the-calculator

    0下载:
  2. 这个C程序用来实现计算器功能。程序主要用编译原理进行处理编写。-This C program used to implement the calculator function. The main principles of the program are processed by the compiler to write.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-17
    • 文件大小:219.96kb
    • 提供者:点点
  1. CODEOfflineJudge_1.00_Bet

    0下载:
  2. 1. 图形用户界面,使用鼠标即可以完成所有操作,直观易用,当然,也有键盘快捷键; 2. 在有标准输入和标准输入数据的情况下,无需联网即可提交代码进行判题; 3. 具备所有Online Judge的核心判题功能,如编译代码、内存限定,时间限定,获取代码长度等; 4. 支持一道题目对应多个文件的测试方式,并支持显示每组测试文件的测试结果,计算正确率; 5. 可以打包并加密测试数据,使用加密后的数据可以正常判题,但不显示标准输出; 6. 拥有出题模式,在有标准输入数据和标程的时候可
  3. 所属分类:Compiler program

    • 发布日期:2017-06-16
    • 文件大小:23.64mb
    • 提供者:ftx
  1. compiler

    0下载:
  2. 类C语言编译器,基本上实现了主要功能的C语言语法,词法分析使用状态转移,语法使用LR(1)方法,自动生成ACTION和GOTO转移表。自顶向下的语法制导翻译,可以生成各种类型的表达式(包括布尔,算术,逻辑等等),循环中的while,选择中的if else 和if等,功能比较强大-Class C language compiler, basically realized the C language syntax, lexical analysis of the main features of
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:75.71kb
    • 提供者:宋yucai
  1. main

    0下载:
  2. Main file of MP3 program in C
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2.16kb
    • 提供者:PRagpot
  1. C_example

    0下载:
  2. Skip to main content Home Programming Simplified c c++ and java programming tutorials and programs-Skip to main content Home Programming Simplified c c++ and java programming tutorials and programs
  3. 所属分类:Compiler program

    • 发布日期:2017-05-04
    • 文件大小:4.23kb
    • 提供者:hamed
  1. 自制编译器 ,青木峰郎著 ,P445

    1下载:
  2. 本书将带领读者从头开始制作一门语言的编译器。笔者特意为本书设计了CЬ语言,CЬ可以说是C语言的子集,实现了包括指针运算等在内的C语言的主要部分。本书所实现的编译器就是C Ь语言的编译器, 是实实在在的编译器,而非有诸多限制的玩具。另外,除编译器之外,本书对以编译器为中心的编程语言的运行环境,即编译器、汇编器、链接器、硬件、运行时环境等都有所提及,介绍了程序运行的所有环节。(This book will lead the reader to make a language compiler fro
  3. 所属分类:编译器/解释器

    • 发布日期:2018-04-29
    • 文件大小:7.21mb
    • 提供者:南的方
  1. 编译器工程

    0下载:
  2. 用大量素材向读者展示现实权衡的存在,展示这些选择的影响可能是微妙且深远的。省略由于商业、语言和编译器技术以及町用工具的变迁而变得不太重要的技术、c语言对优化和代码生成提供更深层次的处理。奉书内容分为四部分。前端部分介绍扫描、语法分析、上下文相关分析的内容;基础结构部分阐述中间表示、过程抽象、代码形态为主线的知识;优化部分阐述构建编译器的巾间部分——优化器所出现的问题;代码生成部分着眼于代码生成中的三个主要问题。(Using a large amount of material to show t
  3. 所属分类:编译器/解释器

    • 发布日期:2018-04-29
    • 文件大小:12.19mb
    • 提供者:南的方
搜珍网 www.dssz.com