Serial.print a character array

AWOL:

void setup() {

// put your setup code here, to run once:
  int8_t C[] = "AT";
 
  Serial.begin(9600);
  Serial.print(C);
}

This doesn't compile.