代码搜索:Cprogram
找到约 200 项符合「Cprogram」的源代码
代码结果 200
www.eeworm.com/read/288383/8636506
cmd cprogram.cmd
-l rts.lib
MEMORY
{
PAGE 0:
PRAM: o=0x100, l=0x2000
PAGE 1:
DRAM : o=3000h,l=2000h
}
SECTIONS
{
.text: {} > PRAM PAGE 0
.bss: {} > DRAM PAGE 1
.stack {} > DRAM
www.eeworm.com/read/288383/8636510
pjt cprogram.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\ICETEK-VC5416-EDULab\LAB0102-CPROGRAM\"
ProjectType=Executable
CPUFamily=TMS320C54
www.eeworm.com/read/288383/8636521
paf cprogram.paf
www.eeworm.com/read/288383/8636525
c cprogram.c
/////////////////////////////////////////////////
// Example For ICETEK-VC5416-EDU //
// CTR Version : V4 //
// Filename: CProgram.c
www.eeworm.com/read/288383/8636961
cmd cprogram.cmd
-l rts.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM PAGE 0
.data : {}> PRA
www.eeworm.com/read/288383/8636966
asm cprogram.asm
;***************************************************************
;* TMS320C54x C/C++ Codegen PC Version 3.831 *
;* Date/Time created: Thu Jul 28 09:04:52 2005 *
;*
www.eeworm.com/read/288383/8636981
c cprogram.c
/////////////////////////////////////////////////
// Example For ICETEK-VC5416-EDU //
// CTR Version : V4 //
// Filename: CProgram.c
www.eeworm.com/read/382531/9023010
txt cprogram.txt
【程序91】
题目:时间函数举例1
1.程序分析:
2.程序源代码:
#include "stdio.h"
#include "time.h"
void main()
{ time_t lt; /*define a longint time varible*/
lt=time(NULL);/*system time and date*/
printf(ctime
www.eeworm.com/read/382530/9023016
txt cprogram.txt
【程序71】
题目:编写input()和output()函数输入,输出5个学生的数据记录。
1.程序分析:
2.程序源代码:
#define N 5
struct student
{ char num[6];
char name[8];
int score[4];
} stu[N];
input(stu)
struct student stu[];
www.eeworm.com/read/382527/9023074
txt cprogram.txt
【程序51】
题目:学习使用按位与 & 。
1.程序分析:0&0=0; 0&1=0; 1&0=0; 1&1=1
2.程序源代码:
#include "stdio.h"
main()
{
int a,b;
a=077;
b=a&3;
printf("\40: The a & b(decimal) is %d \n",b);
b&=7;
print