Input
Output
#include <stdio.h> void main(){ static int a=14; auto int b=9; register int c=3; int d=5; printf("%d %d %d %d",a,b,c,d); }