Example of C Language Static Variables

Example of C Language Static Variables
r‮e‬fer to:lautturi.com
#include<stdio.h>
int fun()
{
  static int count = 1024;
  count++;
  return count;
}
  
int main()
{
  printf("%d ", fun()); // 1025
  printf("%d ", fun()); // 1026
  return 0;
}
Created Time:2017-08-29 10:28:58  Author:lautturi