void (*tree_get(void))(void) {
void (*self)(void);
self = tree_val[tree_idx];
return self;
}
阅读全部
|
dongmeteor
贴于 2012年1月1日 00:36
hide
bbsi
#include"stdio.h"
#include"malloc.h"
#include"stdlib.h"
#include"string.h"
#define SIZE sizeof(struct student)
struct student{
int Subject;
struct student * next;
};
struct subject
{
int subject; //科目数,且规定一名教师教授一门课程
......................
阅读全部
|
西单小六
贴于 2011年12月30日 03:11
hide
bbsi
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
class tongxun//类名
{
public:
tongxun();
string name;//姓名
......................
阅读全部
|
hao136913540
贴于 2011年12月29日 00:45
hide
bbsi
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
class tongxun//类名
{
public:
tongxun();
string name;//姓名
......................
阅读全部
|
hao136913540
贴于 2011年12月29日 00:44
hide
bbsi
this.cmbCourseNO.Items.Add(dc.Tables[0].Rows[j].ItemArray[i].ToString());
这是combox的控件,我想用textbox,请问怎么样才能达到同一个效果
阅读全部
|
然儿
贴于 2011年12月28日 22:39
hide
bbsi
这是主函数文件 main.c
#include <stdio.h>
#include "creaters.h"
int main ()
{
int choice;
printf( "Witch Coder do you want:\n"
"1.Header_Coder\n"
"2.Menu_Coder\n" );
......................
阅读全部
|
edward_eric
贴于 2011年12月27日 00:34
hide
bbsi