代码搜索:Static
找到约 10,000 项符合「Static」的源代码
代码结果 10,000
www.eeworm.com/read/288856/8598573
res static.res
www.eeworm.com/read/432289/8613755
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/286954/8735095
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/286953/8735387
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/284998/8877373
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/187023/8882363
pak static.pak
www.eeworm.com/read/187002/8884148
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/186068/8963145
cpp static.cpp
#include
void info()
{
//information here......
}
void test()
{
//code here......
for (int i = 0; i < 17; i++)
{
static int a = 1;
a += a;
cout
www.eeworm.com/read/382584/9018673
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