代码搜索:msc 开发教程
找到约 10,000 项符合「msc 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/208359/15248395
msc beconnected_successful.msc
www.eeworm.com/read/208359/15248398
msc disconnected1.msc
www.eeworm.com/read/208359/15248399
msc receiver_busy.msc
www.eeworm.com/read/250243/4432679
c ops-msc.c
/*
* Copyright (C) 1999, 2000, 2004, 2005 MIPS Technologies, Inc.
* All rights reserved.
* Authors: Carsten Langgaard
* Maciej W. Rozycki
*
www.eeworm.com/read/229812/4742214
c msc09.c
/* remove 'virtual' or 'const' and it works */
class barf {
public:
virtual operator const double& ();
};
www.eeworm.com/read/229812/4742232
c msc18.c
// page faults C7
struct S {
S(int);
operator int();
int a;
};
S fn( int b, int i, S s )
{
return b ? i : s;
}
www.eeworm.com/read/229812/4742233
c msc17.c
struct S {
S(int);
operator int();
int v;
};
int x;
int foo( S *p )
{
return x ? *p : 0 ;
}
www.eeworm.com/read/229812/4742236
c msc13.c
/*
MSC7 doesn't execute this program correctly. MetaWare screws up the
order of construction for the virtual bases but if the program is
changed to compensate for this, MetaWare executes
www.eeworm.com/read/229812/4742255
c msc07.c
// broken in every compiler tried
struct A {
void foo( int );
static void foo( int, int );
void foo( double );
int a;
};
struct B : A {
int b;
};
struct C : A {
www.eeworm.com/read/229812/4742259
c msc08.c
int x;
void bar( void )
{
extern void i( double );
}
double i( double ) /* cannot redefine the return type! */
{
x = __LINE__;
return x;
}