搜索结果

找到约 113 项符合 Struct 的查询结果

Java书籍 一本很好的学校JAVASTRUTS的书

一本很好的学校JAVASTRUTS的书,对于struct框架特别精辟的讲解!
https://www.eeworm.com/dl/656/475582.html
下载: 45
查看: 1020

其他 本系统是基于JAVA语言的办公系统

本系统是基于JAVA语言的办公系统,基于STRUCT框架
https://www.eeworm.com/dl/534/479829.html
下载: 22
查看: 1035

Linux/uClinux/Unix编程 两个链表的交集

两个链表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{   int data;   struct  Node *next; }Node; void initpointer(struct Node *p){   p=NULL; } int  printlist(struct Node* head){   int flag=1;   head=head->next;   /*   因为标记1的地 ...
https://www.eeworm.com/dl/502540.html
下载: 1
查看: 46

技术书籍 c语言深度剖析

第一章关键字...................................................................................................................................9 1.1,最宽恒大量的关键字----auto..........................................................................................11 1.2,最快的关键字---- register. ...
https://www.eeworm.com/dl/502642.html
下载: 4
查看: 110

单片机编程 舵机电机PID控制算法

#include <hidef.h>      /* common defines and macros */ #include "derivative.h"      /* derivative-specific definitions */ #include <mc9s12xs128.h> //定义PID参数 #define VV_KPVALUE 3       //比例 #define VV_KIVALUE 40    &nbs ...
https://www.eeworm.com/dl/510659.html
下载: 1
查看: 143

Linux/uClinux/Unix编程 struct

幫助學習作業系統的 一些資料   我需要獲得3的 積分  請有興趣者可看
https://www.eeworm.com/dl/511711.html
下载: 1
查看: 27

源码 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。

#include <stdlib.h> #include<stdio.h> #include <malloc.h> #define stack_init_size 100 #define stackincrement 10 typedef struct sqstack { int *base; int *top; int stacksize; } sqstack; int StackInit(sqstack *s) { s->base=(int *)malloc(stack_init_size *sizeof(int)); if(!s->base) return 0; s->top=s->ba ...
https://www.eeworm.com/dl/513582.html
查看: 40

源码 运动会源代码

#include <malloc.h>       #include <stdio.h>       #include <stdlib.h>       #include <string.h>       #define NULL 0    &nbsp ...
https://www.eeworm.com/dl/513814.html
下载: 2
查看: 9

源码 c#简单计算器

// 学生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; ...
https://www.eeworm.com/dl/513825.html
查看: 35

软件 简单的计算器

// 学生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; ...
https://www.eeworm.com/dl/513826.html
查看: 8