代码搜索:unsigned
找到约 10,000 项符合「unsigned」的源代码
代码结果 10,000
www.eeworm.com/read/490520/6447017
cpp 4-3.cpp
#include
void main()
{unsigned int a=65535;
int b=-2;
printf("a=%d,%o,%x,%u\n",a,a,a,a);
printf("b=%d,%o,%x,%u\n",b,b,b,b);
}
www.eeworm.com/read/490520/6447041
cpp 12-2.cpp
#include
main( )
{unsigned a,b,c;
int n;
scanf("a=%o,n=%d",&a,&n);
b=an;
c=c|b;
printf("%o\n%o",a,c);
}
www.eeworm.com/read/490567/6447525
c inftrees.c
/* inftrees.c -- generate Huffman trees for efficient decoding
* Copyright (C) 1995-2006 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
#include "zutil
www.eeworm.com/read/490625/6449745
c delay.c
#define uchar unsigned char
#define uint unsigned int
//delay (uchar x)
delay(uint x)
{
uint a,b;
for(a=x;a>0;a--)
for(b=280;b>0;b--);
}
www.eeworm.com/read/490279/6453459
c aes.c
//filename aes.c
/*
*****************************************************************************
*
* ELEMENT NAME: aes.c
* DESCRIPTION: aes functions
*
* 文件名: aes.c
*
www.eeworm.com/read/489807/6461562
c printf_p.c
// Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist nicht von der Lizenz f?r den MikroKopter-Teil unterstellt
/*
Copyright (C) 1993 Free Software Foundation
This file is part of
www.eeworm.com/read/489948/6464664
lst signal.lst
C51 COMPILER V7.06 SIGNAL 05/15/2009 10:35:08 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE SIGNAL
OBJECT MODULE PLACED IN
www.eeworm.com/read/488970/6480579
c key.c
#include
unsigned char count;
void delay10ms(void)
{
unsigned char i,j;
for(i=20;i>0;i--)
for(j=248;j>0;j--);
}
void main(void)
{
while(1)
{
if(P1_0==0)