开放源码的编译器open watcom 1.6.0版的源代码

源代码在线查看: access14.c

软件大小: 39337 K
上传用户: zhongcheng211
关键词: watcom open 开放源码 编译器
下载地址: 免注册下载 普通下载 VIP

相关代码

				struct A {
				    void foo( int );
				    static void foo( int, int );
				    void foo( double );
				    int a;
				};
				
				struct B : A {
				    int b;
				};
				
				struct C : A {
				    int a;
				};
				
				struct D : B, C {
				    int d;
				};
				
				void foo( D *p )
				{
				    p->foo( 1, 2 );
				}
							

相关资源