phpBook 是個建立於 PHP 及 MySQL 的留言板。 功能包括: -- 內建多種語法 (包括中文) -- IP 封鎖及禁止存取 -- 可自訂表情符號 -- URL-Code,包括 URL-Link s, URL-Picture s -- 自訂禁止字句 -- 防止惡意灌水式攻擊
標簽: URL-Code phpBook MySQL PHP
上傳時間: 2013-12-16
上傳用戶:dongbaobao
學會對文件的記錄鎖定,及解鎖。#include <stdio.h> #include <unistd.h> #include <fcntl.h> int main() { int fd int i struct { char name[20] uint ID int age } myrec fd =open("name", O_RDWR|O_CREAT, 0755) if (fd == -1) return -1 printf("Input your name:") scanf("%s", myrec.name) printf("Inpute your ID :") scanf("%d", &myrec.ID) printf("Input your age :") scanf("%d", &myrec.age) lseek(fd, 0,SEEK_END) lockf(fd, 1, 0) write(fd, (void *)&myrec, sizeof(myrec)) lockf(fd, 0 ,0) return 0 } 執行命令cc lock.c –o lock.out Chmod +x lock.out ./lock.out
標簽: 記錄
上傳時間: 2016-01-04
上傳用戶:亞亞娟娟123
在這篇文檔中,將以C/C++的源碼作為我們基礎,所以必然涉及一些關于C/C++的編譯的知識,相關于這方面的內容,還請各位查看相關的編譯器的文檔。這里所默認的編譯器是UNIX下的GCC和CC。
標簽: 文檔
上傳時間: 2016-01-13
上傳用戶:chenjjer
C語言進階,包含以下的內容:C語言進階-第一講概述.pdf\C語言進階-第二講C語言復習.pdf\C語言進階-第三講編譯匯編調試.pdf\C語言進階-第四講存儲器與指針.pdf\C語言進階-第五講 數據結構與鏈表.pdf\C語言進階-第六講中斷與驅動.pdf\C語言進階-第七講編碼風格.pdf\C語言進階-第八講編寫安全無錯的代碼.pdf\C語言進階-lmalloc 第四講代碼.rar\C語言進階-ASIX Win link list 第五講代碼.rar
上傳時間: 2016-01-16
上傳用戶:pinksun9
數據結構(c\c++)1800例題與答案,值得一看
上傳時間: 2014-11-29
上傳用戶:181992417
This m-file simulates MPSK (BPSK,QPSK,8PSK)with theoretical and simulated results using Gray coding. Numerical examples of a satellite link design are shown using QPSK and/or 8PSK when the bit rate(Rb)is greater than the channel bandwidth Wc (Band-limited channel).
標簽: theoretical simulates simulated results
上傳時間: 2016-01-19
上傳用戶:pompey
Atmel AT91SAM7SE256的一些基本驅動代碼, 包括Link Files, 中斷源配置, SDRAM, USART, Timer等外設的驅動代碼。可用于AT91SAM7SE系列處理器。
上傳時間: 2013-12-20
上傳用戶:zjf3110
Introduction A shared library is a collection of functions that are available for use by one or more applications running on a system. On Windows operating systems, the library is compiled into a dynamic link library (.dll) file. At run-time, the library is loaded into memory and made accessible to all applications.
標簽: Introduction collection available functions
上傳時間: 2014-01-26
上傳用戶:2467478207
This Microsoft(R) Macro Assembler Reference lists all MASM instructions, directives, statements, and operators. It also serves as a quick reference to the Programmer’s WorkBench commands, and the commands for Microsoft utilities such as LINK and LIB. This book documents features of MASM version 6.1, and is part of a complete MASM documentation set.
標簽: instructions directives statements Microsoft
上傳時間: 2016-01-31
上傳用戶:asddsd
c++ how to program 里面詳細介紹了從第1章到第24章的代碼學習實例。是初學者很好的學習資料。 第1章 計算機、Internet和萬維網簡介 第2章 C++編程入門 第3章 類和對象介紹 第4章 控制語句(第Ⅰ部分) 第5章 控制語句(第Ⅱ部分) 第6章 函數和遞歸入門 第7章 數組與CC+標準庫類模板vector 第8章 指針和基于指針的字符串 第9章 類的深入剖析(第Ⅰ部分) 第10章 類的深入剖析(第Ⅱ部分) 第11章 運算符重載:字符串和數組對象 第12章 面向對象編程:繼承 第13章 面向對象編程:多態性 第14章 模板 第15章 輸入/輸出流 第16章 異常處理 第17章 文件處理 第18章 String類和字符串流處理 第19章 Web編程 第20章 搜索和排序 第21章 數據結構 第22章 位、字符、C字符串和結構體 第23章 標準模板庫 第24章 其他主題
上傳時間: 2014-01-13
上傳用戶:yuzsu