
G
CCodes
这个作者很懒,什么都没留下…
展开
-
guard_page.cpp
原创 2007-11-08 18:20:00 · 495 阅读 · 0 评论 -
global.cpp
原创 2007-11-08 18:14:00 · 582 阅读 · 0 评论 -
get_time.cpp
原创 2007-11-08 18:12:00 · 340 阅读 · 0 评论 -
get_sysm.h
原创 2007-11-08 18:11:00 · 347 阅读 · 0 评论 -
get_set_dbl-click.h
原创 2007-11-08 18:10:00 · 348 阅读 · 0 评论 -
get_pass.c
原创 2007-11-08 18:10:00 · 295 阅读 · 0 评论 -
getwindc.h
原创 2007-11-08 18:07:00 · 348 阅读 · 0 评论 -
getwindc.cpp
原创 2007-11-08 18:07:00 · 243 阅读 · 0 评论 -
getthreadcontext.cpp
原创 2007-11-08 18:06:00 · 373 阅读 · 0 评论 -
gets.c
原创 2007-11-08 18:06:00 · 298 阅读 · 0 评论 -
getpass.c
原创 2007-11-08 18:05:00 · 485 阅读 · 0 评论 -
getline.cpp
原创 2007-11-08 18:04:00 · 296 阅读 · 0 评论 -
goto_100.c
原创 2007-11-08 18:20:00 · 404 阅读 · 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 · 369 阅读 · 0 评论 -
getpid.c
原创 2007-11-08 18:05:00 · 359 阅读 · 0 评论 -
gotoxy.c
原创 2007-11-08 18:19:00 · 388 阅读 · 0 评论 -
gloscope.c
原创 2007-11-08 18:18:00 · 371 阅读 · 0 评论 -
globstat.cpp
原创 2007-11-08 18:18:00 · 394 阅读 · 0 评论 -
global_realloc.cpp
原创 2007-11-08 18:17:00 · 442 阅读 · 0 评论 -
global_discard.cpp
原创 2007-11-08 18:15:00 · 363 阅读 · 0 评论 -
global_alloc.cpp
原创 2007-11-08 18:14:00 · 486 阅读 · 0 评论 -
get_vect.c
原创 2007-11-08 18:13:00 · 283 阅读 · 0 评论 -
get_time.h
原创 2007-11-08 18:12:00 · 308 阅读 · 0 评论 -
get_sysm.cpp
原创 2007-11-08 18:11:00 · 242 阅读 · 0 评论 -
get_set_dbl-click.cpp
原创 2007-11-08 18:10:00 · 320 阅读 · 0 评论 -
get_async_keys.cpp
原创 2007-11-08 18:08:00 · 288 阅读 · 0 评论 -
getfatd.c
原创 2007-11-08 18:04:00 · 346 阅读 · 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 · 301 阅读 · 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 · 325 阅读 · 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 · 580 阅读 · 0 评论 -
global_realloc.h
原创 2007-11-08 18:17:00 · 461 阅读 · 0 评论 -
global_alloc.h
原创 2007-11-08 18:15:00 · 346 阅读 · 0 评论 -
get_verx.c
原创 2007-11-08 18:13:00 · 288 阅读 · 0 评论 -
get_file.cpp
原创 2007-11-08 18:09:00 · 302 阅读 · 0 评论 -
get_devc.h
原创 2007-11-08 18:09:00 · 645 阅读 · 0 评论 -
get_devc.cpp
原创 2007-11-08 18:08:00 · 410 阅读 · 0 评论 -
get_async_keys.h
原创 2007-11-08 18:08:00 · 331 阅读 · 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 · 351 阅读 · 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 · 467 阅读 · 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 · 300 阅读 · 0 评论