程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言問答 >> c語言 用vc圖形界面編程 教程

c語言 用vc圖形界面編程 教程

編輯:C語言問答

c語言 用vc圖形界面編程 教程

20

用tc難看死了,   用vc就有些函數編譯不了,如gotoxy();

所以想找教程,適用於vc的

謝謝

郵箱   [email protected]

補充:

這個vc編譯不了,除了tc還有什麼軟件可以編譯??

#include<conio.h>
void border(int startx,int starty,int endx,int endy)
{
   register int i;
   gotoxy(1,1);
   for(i=0;i<=endx-startx;i++)
      putch('-');
   gotoxy(1,endy-starty);
   for(i=0;i<=endx-startx;i++)
      putch('-');
   for(i=2;i<=endy-starty;i++){
      gotoxy(1,i);
      putch('1');
      gotoxy(endx-startx+1,i);
      putch('1');
   }
}

main()
{
   void border(int,int,int,int);
   clrscr();
   window(6,8,38,12);
   border(6,8,38,12);
   gotoxy(2,2);
   printf("window 1");
   window(8,16,40,24);
   border(8,16,40,24);
   gotoxy(3,2);
   printf("window 2");
   getch();
}

最佳回答:

Windows程序設計看嗎?已發。你的代碼只能用TC編譯。你那個代碼用到了TC自己的庫。沒有辦法的事
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved