
G
CCodes
这个作者很懒,什么都没留下…
展开
-
guard_page.cpp
原创 2007-11-08 18:20:00 · 507 阅读 · 0 评论 -
global.cpp
原创 2007-11-08 18:14:00 · 586 阅读 · 0 评论 -
get_time.cpp
原创 2007-11-08 18:12:00 · 346 阅读 · 0 评论 -
get_sysm.h
原创 2007-11-08 18:11:00 · 350 阅读 · 0 评论 -
get_set_dbl-click.h
原创 2007-11-08 18:10:00 · 353 阅读 · 0 评论 -
get_pass.c
原创 2007-11-08 18:10:00 · 304 阅读 · 0 评论 -
getwindc.h
原创 2007-11-08 18:07:00 · 352 阅读 · 0 评论 -
getwindc.cpp
原创 2007-11-08 18:07:00 · 245 阅读 · 0 评论 -
getthreadcontext.cpp
原创 2007-11-08 18:06:00 · 382 阅读 · 0 评论 -
gets.c
原创 2007-11-08 18:06:00 · 300 阅读 · 0 评论 -
getpass.c
原创 2007-11-08 18:05:00 · 492 阅读 · 0 评论 -
getline.cpp
原创 2007-11-08 18:04:00 · 301 阅读 · 0 评论 -
goto_100.c
原创 2007-11-08 18:20:00 · 407 阅读 · 0 评论 -
gen_fib.cpp
// If you use Visual C++, set the compile options to /GX#ifdef __BCPLUSPLUS__#include #include #include #else#include #include #include #endifusing namespace std;//return the next Fibonacci num原创 2007-11-08 18:00:00 · 376 阅读 · 0 评论 -
getpid.c
原创 2007-11-08 18:05:00 · 360 阅读 · 0 评论 -
gotoxy.c
原创 2007-11-08 18:19:00 · 393 阅读 · 0 评论 -
gloscope.c
原创 2007-11-08 18:18:00 · 374 阅读 · 0 评论 -
globstat.cpp
原创 2007-11-08 18:18:00 · 398 阅读 · 0 评论 -
global_realloc.cpp
原创 2007-11-08 18:17:00 · 444 阅读 · 0 评论 -
global_discard.cpp
原创 2007-11-08 18:15:00 · 365 阅读 · 0 评论 -
global_alloc.cpp
原创 2007-11-08 18:14:00 · 491 阅读 · 0 评论 -
get_vect.c
原创 2007-11-08 18:13:00 · 286 阅读 · 0 评论 -
get_time.h
原创 2007-11-08 18:12:00 · 312 阅读 · 0 评论 -
get_sysm.cpp
原创 2007-11-08 18:11:00 · 247 阅读 · 0 评论 -
get_set_dbl-click.cpp
原创 2007-11-08 18:10:00 · 326 阅读 · 0 评论 -
get_async_keys.cpp
原创 2007-11-08 18:08:00 · 291 阅读 · 0 评论 -
getfatd.c
原创 2007-11-08 18:04:00 · 348 阅读 · 0 评论 -
getch.c
#include #include #include void main(void) { int letter; printf("Type in a string of characters and press Enter/n"); do { letter = getch(); letter = toupper(letter); putch(l原创 2007-11-08 18:02:00 · 307 阅读 · 0 评论 -
gen_safe.cpp
#include #include "stdlib.h"const int SIZE = 10;template class atype { AType a[SIZE]; public: atype(void) { int i; for(i=0; i a[i] = i; } AType &operator[](int i原创 2007-11-08 18:01:00 · 328 阅读 · 0 评论 -
generic.h
#define IDM_EXIT 100#define IDM_TEST 200#define IDM_ABOUT 300#define DLG_VERFIRST 400#define DLG_VERLAST 404LRESULT CALLBACK WndProc(HWND, UINT, WPARA原创 2007-11-08 17:59:00 · 599 阅读 · 0 评论 -
global_realloc.h
原创 2007-11-08 18:17:00 · 462 阅读 · 0 评论 -
global_alloc.h
原创 2007-11-08 18:15:00 · 354 阅读 · 0 评论 -
get_verx.c
原创 2007-11-08 18:13:00 · 290 阅读 · 0 评论 -
get_file.cpp
原创 2007-11-08 18:09:00 · 305 阅读 · 0 评论 -
get_devc.h
原创 2007-11-08 18:09:00 · 647 阅读 · 0 评论 -
get_devc.cpp
原创 2007-11-08 18:08:00 · 411 阅读 · 0 评论 -
get_async_keys.h
原创 2007-11-08 18:08:00 · 332 阅读 · 0 评论 -
getche.c
#include #include #include void main(void) { int letter; printf("Do you want to continue? (Y/N): "); do { letter = getche(); letter = toupper(letter); } while ((lett原创 2007-11-08 18:03:00 · 357 阅读 · 0 评论 -
gen_stck.cpp
#include const int SIZE = 100;template class stack { SType stck[SIZE]; int tos; public: stack(void); ~stack(void); void push(SType i); SType pop(void); };template stack::stack()原创 2007-11-08 18:01:00 · 470 阅读 · 0 评论 -
getchar.c
#include #include void main(void) { int letter; printf("Type Y or N to continue and press Enter/n"); do { letter = toupper(getchar()); } while ((letter != Y) && (letter != N原创 2007-11-08 18:02:00 · 304 阅读 · 0 评论