知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
C 的主程式
1樓
[code]

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
  
  system("PAUSE");
  return 0;
}

[/code]