搜索结果: 系统搜索到约有144145项符合printf的查询结果

  • eh6.c

    // { dg-do run { xfail sparc64-*-elf arm-*-pe } } // { dg-options "-fexceptions" } extern "C" int printf(const char *, ...); void main1() { throw 1; } int main() { try { main1(); } catch

    http://www.codebf.com/read/162614/5521701

  • p783.c

    // { dg-do run } // prms-id: 783 extern "C" int printf (const char *, ...); class C { public: C() { } ~C() { } }; int main(int argc, char**argv) { C c,d; c = (argc&1) ? C() : d; return 0

    http://www.codebf.com/read/162614/5521702

  • p3708.c

    // { dg-do run } // prms-id: 3708 extern "C" int printf (const char *, ...); extern "C" int atoi (const char *); void *ptr; class A { public: A() { printf ("A is constructed.\n"); } virtual vo

    http://www.codebf.com/read/162614/5521706

  • eh8.c

    // { dg-do run { xfail sparc64-*-elf arm-*-pe } } // { dg-options "-fexceptions" } extern "C" int printf(const char *, ...); int i; main() { try { try { throw i; } catch (char *) {

    http://www.codebf.com/read/162614/5521745

  • ambig1.c

    // { dg-do assemble } extern "C" int printf(const char *, ...); struct VB { virtual void f() { printf("VB\n"); } }; class M : public virtual VB { public: int i; void f() { printf("M

    http://www.codebf.com/read/162614/5521746

  • misc14.c

    // { dg-do run } // GROUPS passed extern "C" int printf (const char *, ...); extern "C" void exit(int); class A { public: virtual ~A() { printf("FAIL\n"); exit (1); } }; class B : publi

    http://www.codebf.com/read/162614/5521749

  • eh1.c

    // { dg-do assemble } // { dg-options "-fexceptions -O -S" } extern "C" int printf (const char *, ...); extern "C" int atoi (const char *); extern "C" void exit (int); struct Exception { int

    http://www.codebf.com/read/162614/5521770

  • net16.c

    // { dg-do run } // On an i386, this core dumps because the reg-stack.c code is wrong, and // pops an fp register that it thinks is not used, but it is. extern "C" int printf (const char*, ...); str

    http://www.codebf.com/read/162614/5521786

  • net21.c

    // { dg-do run } // Make sure we can initialize complex (MI ambiguous) vtables. extern "C" int printf(const char *, ...); struct a { virtual void f() = 0; }; struct b { virtual void g() {

    http://www.codebf.com/read/162614/5521808

  • p1248.c

    // { dg-do run } // GROUPS passed pure-virt extern "C" int printf (const char *, ...); class Base { public: virtual ~Base() =0; }; class Deranged : public Base { public: int value; virtual ~De

    http://www.codebf.com/read/162614/5521809