本人买了一本 嵌入式实时操作系统uCOS-II原理及应用 上面的程序都是用BorlandC 3.1 编译的。对于这个软件,我彻底无语,非常不方便。但又想观察源代码的Putout 。
//pa.c
# include<stdio.h>
# include"pa.h"
void A_print( )
{
printf("AAAAAAAA\n");
}
//pa.h
# ifndef PA_H
# define PA_H
void A_print( );
# endif
//pb.c
# include <stdio.h>
# include "pb.h"
void B_print( )
{
printf(" BBBBBBBB\n");
}
//pb.h
# ifndef PB_H
# define PB_H
void B_print( );
# endif
//test.c
# include"pa.h"
# include"pb.h"
void main( )
{
for( ; ; )
{
A_print( );
B_print( );
}
}
Build all了很多遍,就是连接不成功。求解、、、、、、 |