Hello guys,

i created a new file useing a program like below


#include <stdio.h>
#include <fcntl.h>

Code:
int main()
{
  int fileStatus;

  fileStatus = open("temp.txt",O_RDONLY|O_WRONLY|O_RDWR|O_APPEND|O_CREAT);

  printf("%d \n",fileStatus);

  return 0;


}
after executing this program . when i do the ls -l it shows as below

-rw-rwx--T 1 rama rama 0 Mar 28 18:44 temp.txt

do any body know what is this "T" means .

regards