dullmath.c

来自「C.Game.Programming.For.Dummies原码」· C语言 代码 · 共 28 行

C
28
字号
#include <stdio.h>

void here(void);	// silly prototype error avoiding
void there(void);	// technique

void main()
{
	here();
	there();
	here();
        there();
}

void here()
{
	int v;

	v=6*5;
	printf("The value of v here is %i\n",v);
}

void there()
{
	int v;

        v+=5;
	printf("The value of v there is %i\n",v);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?