代码搜索:struct
找到约 10,000 项符合「struct」的源代码
代码结果 10,000
www.eeworm.com/read/298657/3859625
c struct.c
/* Oki bug report, no number. Here's the output the error generates.
gcc -c -g -ansi oki008.c -o oki008.o -msoft-float
oki008.c: In function `Proc0':
oki008.c:50: internal error-
www.eeworm.com/read/292705/3949501
h struct.h
/*
* struct.h - Structure definitions
*
* Copyright (C) 1997 R間is Duchesne
* Copyright (C) 2000-2001 Anton Altaparmakov (AIA)
*/
#include
/* Necessary forward definition. */
st
www.eeworm.com/read/292490/3952764
h struct.h
////////////////////////////////////////////////////////////////////////////
//
//
// Project : VideoNet version 1.1.
// Description : Peer to Peer Video Conferencing over the LAN.
//
www.eeworm.com/read/286314/4040079
cs struct.cs
using System;
public enum AccountType {Checking, Deposit}
// TODO: Declare a Struct
class Test
{
static void Main()
{
// TODO: Test Structure
}
}
www.eeworm.com/read/286314/4040083
cs struct.cs
using System;
public enum AccountType {Checking, Deposit}
public struct BankAccount
{
public long accNo;
public decimal accBal;
public AccountType accType;
}
class Test
{
www.eeworm.com/read/286314/4040091
cs struct.cs
using System;
public enum AccountType {Checking, Deposit}
public struct BankAccount
{
public long accNo;
public decimal accBal;
public AccountType accType;
}
class Test
{
www.eeworm.com/read/286314/4040095
cs struct.cs
using System;
public enum AccountType {Checking, Deposit}
public struct BankAccount
{
public long accNo;
public decimal accBal;
public AccountType accType;
}
class Test
{
www.eeworm.com/read/285741/4045608
h struct.h
//
// Struct.h -- structures and declarations for windows
// commander.
//
#ifndef __STRUCT_H__
#define __STRUCT_H__
typedef struct _ITEMINFO
{
int nIcon;
CString strFileType;
W
www.eeworm.com/read/285741/4045654
cpp struct.cpp
#include
struct Struct1
{
int x;
int y;
};
struct Struct2 : Struct1
{
int z;
};
int main()
{
Struct2 s;
printf ("sizeof (Struct1) is %d\n
www.eeworm.com/read/285741/4045684
h struct.h
//
// Struct.h -- structures and declarations for windows
// commander.
//
#ifndef __STRUCT_H__
#define __STRUCT_H__
typedef struct _ITEMINFO
{
int nIcon;
CString strFileType;
W