
Q
文章平均质量分 66
CCodes
这个作者很懒,什么都没留下…
展开
-
queue_status.cpp
#include // Windows message procedure.LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam){ switch (uMsg) { case WM_COMMAND: /* process menu items */原创 2007-11-08 20:20:00 · 543 阅读 · 0 评论 -
qsort.c
#include #include int compare_int(int *a, int *b) { if (*a return(-1); else if (*a == *b) return(0); else return(1); }int compare_float(float *a, float *b) { if (*a return(-1);原创 2007-11-08 20:20:00 · 611 阅读 · 0 评论 -
quick.c
#include #include void quick_sort(int array[], int first, int last) { int temp, low, high, list_separator; low = first; high = last; list_separator = array[(first + last) / 2];原创 2007-11-08 20:21:00 · 555 阅读 · 0 评论 -
quotes.c
#include void main(void) { char string[] = "/"Stop!/", he said."; printf(string); }原创 2007-11-08 20:23:00 · 379 阅读 · 0 评论