这两个C程序怎么连起来啊?
#include <windows.h> #include <winnt.h>
#include <stdio.h>
int main()
{
HANDLE chwnd;
int a;
chwnd = GetStdHandle(STD_OUTPUT_HANDLE); //获取控制台句柄
SetConsoleOutputCP(936); //设为中文控制台页
for(a=1;a<128;a*=2)
{
SetConsoleTextAttribute(chwnd,a|FOREGROUND_INTENSITY); //设置颜色
printf("中文Foreground Color\r\n");
}
return 0;
}
-------------------------------------------------------
和下面这个:
#include "stdio.h"
#include "graphics.h"
int main()
{int driver,mode,i,j ;
char c[]="Foreground Color";
driver=DETECT;
mode=0;
initgraph(&driver,&mode,"");
for(;;)/*直到按键结束*/
{for(i=1;i<=16;i++)/*十六种颜色变换,可以根椐自己想要那几种换也行*/
{setcolor(i);
moveto(100,200);
settextstyle(0,0,3);
outtext(c);
for(j=1;j<=10000;j++)/*推迟*/
delay(10);
}
if(bioskey(1))
break;
}
restorecrtmode();/*关闭*/
}
------------------------------------------------
我想让一个程序有上面两种功能,我把这两个放一起就出错,我不会连。请大家帮忙,谢了