代码搜索:struct
找到约 10,000 项符合「struct」的源代码
代码结果 10,000
www.eeworm.com/read/255427/12082119
ncb struct.ncb
www.eeworm.com/read/255427/12082121
dsw struct.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/255427/12082125
cpp struct.cpp
#include
#include
void main()
{int NUM,I;
struct STUDENT
{char NAME[30];
int AGE;
char ID[10];
};
struct STUDENT STD[100];
cprintf("\nHow many student do you ha
www.eeworm.com/read/255427/12082126
exe struct.exe
www.eeworm.com/read/152772/12086430
rsvpte_struct
/*
* Copyright (C) James R. Leu 2003
* jleu@mindspring.com
*
* This software is covered under the LGPL, for more
* info check out http://www.gnu.org/copyleft/lgpl.html
*/
#ifndef RSVPTE_STR
www.eeworm.com/read/152752/12087918
sbk struct.sbk
.set reorder
.globl addpoint
.text
.text
.align 2
.ent addpoint
addpoint:
.frame $sp,0,$31
.set noreorder
.cpload $25
.set reorder
sw $5,4($sp)
sw $6,8($sp)
sw $7,12($sp)
lw $24,4+0($sp)
www.eeworm.com/read/152752/12088097
sbk struct.sbk
.486
.model flat
extrn __fltused:near
extrn __ftol:near
public _addpoint
_TEXT segment
_addpoint:
push ebx
push esi
push edi
push ebp
mov ebp,esp
mov edi,dword ptr (32)[ebp]
add dword ptr
www.eeworm.com/read/152752/12088332
sbk struct.sbk
.globl addpoint
.text
.align 16
.type addpoint,@function
addpoint:
pushl %ebp
pushl %ebx
pushl %esi
pushl %edi
movl %esp,%ebp
movl 32(%ebp),%edi
addl %edi,24(%ebp)
movl 36(%ebp),%edi
addl
www.eeworm.com/read/152752/12088500
struct.0
www.eeworm.com/read/152752/12088513
c struct.c
typedef struct point { int x,y; } point;
typedef struct rect { point pt1, pt2; } rect;
point addpoint(point p1, point p2) { /* add two points */
p1.x += p2.x;
p1.y += p2.y;
return p1;
}