Data Type C

#include 
typedef signed char smallint;
int main(void)
{
  smallint i;
  for( i = 0; i < 10; i++)
    printf("%d ", i);
  return 0;
}