代码搜索:Static
找到约 10,000 项符合「Static」的源代码
代码结果 10,000
www.eeworm.com/read/382395/9030958
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/184890/9067605
cpp static.cpp
//: C03:Static.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using a static variable in a func
www.eeworm.com/read/380940/9120312
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/380937/9121837
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/380854/9125453
usbd_static
www.eeworm.com/read/281673/9142130
cpp static.cpp
//: C03:Static.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using a static variable in a func
www.eeworm.com/read/181071/9275762
c static.c
/*
** $Id: static.c,v 1.3.6.1 2006/06/15 10:20:10 xwyan Exp $
**
** Listing 19.1
**
** static.c: Sample program for MiniGUI Programming Guide
** Demo for static control.
**
** Copyright (C) 2004
www.eeworm.com/read/180601/9300727
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/376114/9330362
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/179712/9341434