知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
#include 可以 nested
1樓
// file: inc-01.h

#include <stdio.h>
#include <math.h>
#include <process.h>
#include <conio.h>
#include <sys/timeb.h>
#include <time.h>

#include "sj-01.h"
#include "sj-02.h"
// ----------------------------------------------

// file: acad.cpp

#if 0

#endif
// ----------------------------------------------

#include "inc-01.h"
// ----------------------------------------------

int main()
{
//
return(0);
}// end of main()