Skip to content
Snippets Groups Projects
Select Git revision
  • 47fbe2beac25a805511f2dca459d67e1e6859c88
  • master default
2 results

incdate-4.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    functions-18.c 418 B
    #include <stdio.h>
    
    int a = 0, b = 3;
    
    void foo (void)
    {
      b++;
      static int a = 5;
      int b = 7;
      printf ("foo(): " "a = %d, b = %d\n", a, b);
      a++;
    }
    
    int main (void)
    {
      printf ("main(): " "a = %d, b = %d\n", a, b);
      foo ();
      printf ("main(): " "a = %d, b = %d\n", a, b);
      a = b = 12;
      printf ("main(): " "a = %d, b = %d\n", a, b);
      foo ();
    /*
      printf ("main(): " "a = %d, b = %d\n", a, b);
    */
      return 0;
    }