C语言100个经典例题(九)

C语言100个经典例题(九),第1张

建议看C语言学习笔记(八)--超详细的函数讲解--part 2之后来练习习题

目录

【程序41】题目:学习static定义静态变量的用法

【程序42】 题目:学习使用auto定义变量的用法

【程序43】题目:学习使用static的另一用法。

【程序44】题目:学习使用external的用法。

【程序45】题目:学习使用register定义变量的方法。


【程序41】题目:学习static定义静态变量的用法

程序源代码:

#include "stdio.h"
#include "conio.h"
varfunc()
{
  int var=0;
  static int static_var=0;
  printf(":var equal %d \n",var);
  printf(":static var equal %d \n",static_var);
  printf("\n");
  var++;
  static_var++;
}
void main()
{
  int i;
  for(i=0;i<3;i++)
    varfunc();
  getch();
}
【程序42】 题目:学习使用auto定义变量的用法

程序源代码:

#include "stdio.h"
#include "conio.h"
main()
{
  int i,num;
  num=2;
  for(i=0;i<3;i++)
  {
    printf(": The num equal %d \n",num);
    num++;
    {
      auto int num=1;
      printf(": The internal block num equal %d \n",num);
      num++;
    }
  }
  getch();
}
 【程序43】题目:学习使用static的另一用法。

程序源代码:

#include "stdio.h"
#include "conio.h"
main()
{
  int i,num;
  num=2;
  for(i=0;i<3;i++)
  {
    printf(": The num equal %d \n",num);
    num++;
    {
      static int num=1;
      printf(":The internal block num equal %d\n",num);
      num++;
    }
  }
  getch();
}
【程序44】题目:学习使用external的用法。

程序源代码:

#include "stdio.h"
#include "conio.h"
int a,b,c;
void add()
{
  int a;
  a=3;
  c=a+b;
}
void main()
{
  a=b=4;
  add();
  printf("The value of c is equal to %d\n",c);
  getch();
}
【程序45】题目:学习使用register定义变量的方法。

程序源代码:

#include "stdio.h"
#include "conio.h"
void main()
{
  register int i;
  int tmp=0;
  for(i=1;i<=100;i++)
  tmp+=i;
  printf("The sum is %d\n",tmp);
  getch();
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/789025.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-05
下一篇 2022-05-05

发表评论

登录后才能评论

评论列表(0条)

保存