代码搜索:C语言基础
找到约 10,000 项符合「C语言基础」的源代码
代码结果 10,000
www.eeworm.com/read/267095/11195154
ppt 第二章 matlab语言基础.ppt
www.eeworm.com/read/267095/11195163
ppt 第二章 matlab语言基础.ppt
www.eeworm.com/read/204090/15344785
ppt 第二章 matlab语言基础.ppt
www.eeworm.com/read/102840/15756534
ppt 第二章 matlab语言基础.ppt
www.eeworm.com/read/375855/9347344
c 魔王语言.c
#include
#include
#define MAXQUEUE 200
/*本程序是一个魔王语言程序*/
int queue[MAXQUEUE];
int front=-1;
int rear=-1;
int EnQueue(char value) /*进队*/
{
if(rear>=MAXQUE
www.eeworm.com/read/365193/9875350
doc c语言.doc
www.eeworm.com/read/426309/10265025
txt c语言.txt
当 x 输入值为9999时,函数返回值为多少?
int fun ( unsigned int x )
{
int count = 0;
while(x)
{
x = x & (x-1);
count++;
}
return count;
}
答案:此函数是在计算 x 中含有1的个数,所以返回值为8。
1. 以下三条输出语句分别输出什么?[
www.eeworm.com/read/420652/10782838
txt c语言.txt
c语言常见笔试题
关键词: 笔试题
int Strcmp(char *str1, char *str2)
{
int i=0;
int b=0;
while(str1[i]||str2[i])
{
if(str1[i]>str2[i])
{
www.eeworm.com/read/420144/10815445
doc c语言.doc
www.eeworm.com/read/273411/10916742