當前位置:首頁 » 操作系統 » c網站源碼下載

c網站源碼下載

發布時間: 2022-12-31 16:54:04

㈠ 求有大量c語言源代碼的網站

我個人推薦csdn網站,在裡面你點擊C語言,會出現好多代碼。

㈡ 求免費c,c++,vc源代碼下載網站網址

www.vchome.net
www.vckbase.net
www.code365.com
www.vccode.net
www.czvc.net
www.csdn.net

㈢ 求個c源碼網站

下載開源的代碼就可以了。足夠長的。比如linux內核的代碼,很多開源軟體的代碼。在github或者sourceforge上有很多c的開源代碼。code.google.com上也有很多。

㈣ c語言源代碼 請問有什麼網站能免費下載好的C語言源代碼,適合新手學習的。謝謝

msdn注冊個賬號就行,下的時候扣積分,下完送回積分~

㈤ 急求一個c的源程序,(可以下載,只要是c編寫的就行,給我提供免費下載的網址也行)

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

struct send_alarm_msg{
unsigned char index;
struct send_alarm_msg *pre, *next;
}__attribute((packed,aligned(1)));

static struct send_alarm_msg init_send_alarm = {11, &init_send_alarm, &init_send_alarm};
static struct send_alarm_msg *send_alarm = &init_send_alarm;

#define INIT_LIST_HEAD(ptr) do{\
(send_alarm)->next = (send_alarm)\
(send_alarm)->prev = (send_alarm);} while (0)

#define ALARMADD(a) do{(a)->pre = send_alarm; \
send_alarm->next->pre = (a);\
(a)->next = send_alarm->next;\
send_alarm->next = (a);}while(0)

#define ALARMDEL(a) do{(a)->next->pre = (a)->pre; \
(a)->pre->next = (a)->next; \
free((a));a=NULL;}while(0);

#define ALARMCLR(a) do{(a)->next = (a); (a)->pre = (a);}while(0)

void add_list(int index)
{
struct send_alarm_msg *t = NULL;
t = (struct send_alarm_msg *)malloc(sizeof(struct send_alarm_msg));
memset(t, 0, sizeof(struct send_alarm_msg));

t->index = index;
ALARMADD(t);
printf("add_alarm_node %d\n",index);
}

static int del_alarm_node(int alarm_index)
{
struct send_alarm_msg *t = send_alarm->next;
while (t != send_alarm)
{
if (t->index == alarm_index)
{
ALARMDEL(t);
return 0;
}
t = t->next;
}
return -1;
}

int main()
{
int i=0;
for(i=1;i<8;i++)
{
add_list(i);
}

struct send_alarm_msg *t = send_alarm->next;

i = 0;
while (t != send_alarm)
{
del_alarm_node(i);
printf("del_alarm_node %d ",t->index);
printf("t->next index %d ",t->next->index);
printf("t->pre index %d\n",t->pre->index);

t = t->next;
i++;

}
printf("i= %d end\n",i);

}

裡面已經有了添加和刪除,查詢可以仿照添加來做,排序可以在查詢的基礎上寫個冒泡排序

㈥ c源代碼哪裡有下載

http://www.softhy.net/
這里有很多啊,什麼源代碼都有
http://www.newasp.net/code/dl003185
這里下C的源代碼

㈦ C#原代碼可以學習的網站,有學習價值的都行的,謝了,

http://www.csdn.net/

㈧ 求C語言源碼下載地址,目的是學深層次的內容。

C函數實現:
(VS2008版)C:\Program Files\Microsoft Visual Studio 9.0\VC\crt\src
(VC6.0版)C:\Program Files\Microsoft Visual Studio\VC98\CRT\SRC

MYsql的源碼包:
http://dev.mysql.com/downloads/mirror.php?id=397222#mirrors

㈨ 誰能提供幾個比較好的c語言游戲源碼下載網站呢pudn和csdn的就不要說了下寫小游戲代碼研究下!

成都聚人科技有限公司旗下 聚游戲網 西南最大的游戲門戶網 強烈推薦

㈩ 那個網站里可以免費下載更多的C語言源代碼呢

CSDN,我建議你還可以看看別人的博客,有很多關於程序的感想,看看別人的經驗,你會懂得更多

熱點內容
43魔獸世界POR腳本 發布:2025-05-10 10:06:15 瀏覽:730
群輝外網訪問nas 發布:2025-05-10 10:05:35 瀏覽:471
ftp記錄傳輸文件 發布:2025-05-10 09:56:53 瀏覽:560
社保的查詢密碼是什麼 發布:2025-05-10 09:51:49 瀏覽:619
php獲取ip的函數 發布:2025-05-10 09:43:48 瀏覽:152
金立怎麼刷機解鎖密碼 發布:2025-05-10 09:43:45 瀏覽:761
陶藝訪問學者 發布:2025-05-10 09:43:43 瀏覽:880
英語編譯和翻譯過程 發布:2025-05-10 09:34:35 瀏覽:344
搜狐視頻上傳視頻 發布:2025-05-10 09:34:35 瀏覽:647
共享存儲linux 發布:2025-05-10 09:34:32 瀏覽:153