代码搜索:Static
找到约 10,000 项符合「Static」的源代码
代码结果 10,000
www.eeworm.com/read/178378/9404926
cpp static.cpp
//: C03:Static.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Using static data in a function
#include
www.eeworm.com/read/177852/9430705
tcl static.tcl
#
# DESCRIPTION
# This file contains a procedure written in Tcl that supports static
# variables.
#
#+ static - static variables support
#
# This procedure supports static variabl
www.eeworm.com/read/372762/9494420
c static.c
/* 给出年、月、日,计算该日是该年的第几天 */
# include
int sum_day(int month, int day);
int leap(int year);
void main()
{
int year, month, day;
int days;
printf("请输入日期(年,月,日):");
scanf("%d, %d
www.eeworm.com/read/372678/9497816
anm static.anm
#mode can be "static" or "mobile"
mode=static
#The field is defined as a polygon
field=(-700,-600);(-650,500);(250,500);(300,-400);(50,-200);(-200,-300);
# obstacles are not allowed to overlap and
www.eeworm.com/read/372465/9509455
c static.c
#include
void print_reportcard(int printer_number)
{
static int student_id = 100;
printf("Printing report card for student %d\n", student_id);
student_id++;
// Other
www.eeworm.com/read/371500/9551456
hw-static
www.eeworm.com/read/175135/9558462
cpp static.cpp
// static.cpp -- using a static local variable
#include
// constants
const int ArSize = 10;
// function prototype
void strcount(const char * str);
int main()
{
using namespa
www.eeworm.com/read/366524/9810101
c static.c
#include
void print_reportcard(int printer_number)
{
static int student_id = 100;
printf("Printing report card for student %d\n", student_id);
student_id++;
// Other
www.eeworm.com/read/169944/9830256
cpp static.cpp
#include "gos.h"
#include "static.h"
LRESULT CStatic::MsgProc(UINT message, WPARAM wParam, LPARAM lParam)
{
switch(message)
{
case WM_PAINT:
OnPaint(PDC(wParam));
break;
default:
www.eeworm.com/read/169944/9830370
h static.h
#ifndef _GOS_STATIC_H_
#define _GOS_STATIC_H_
enum _tagStatic
{
SS_TEXT =0x0000,
SS_ZOOMIN =0x0100,
SS_ZOOMOUT =0x0200,
SS_ZOOM =0x0300,
SS_STRETCH =0x0400,
SS_MULTILINE