fork download
  1. #include <stdio.h>
  2. void test( auto int a) // Or static int a Or extern int a
  3. {
  4. printf("a=%d\n",a);
  5. }
  6.  
  7. int main()
  8. {
  9. test(10);
  10. return 1;
  11. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:2:21: error: storage class specified for parameter ‘a’
 void test( auto int a) // Or static int a Or extern int a
                     ^
stdout
Standard output is empty