i kept my text file at exactly same place where .exe is existing , then also its not working .. hi this is my code , i kept my text file at exactly same place where .exe is existing , then also its not working .. hi this is my code , i kept my text file at exactly same place where .exe is existing , then also its not working ..
   int main(int argc, _TCHAR* argv[])
{
    int result = 0;
  char ca, file_name[25];
   FILE *fp;
   //printf("Enter the name of file you wish to see\n");
   gets(file_name);
   fp = fopen("sample.txt","r"); // read mode
   if( fp == NULL )
   {
      perror("Error while opening the file.\n");
      //exit(EXIT_FAILURE);
   }
   if( fgets (str, 60, fp)!=NULL ) 
   {
      /* writing content to stdout */
      puts(str);
   }
   fclose(fp);
}
 
     
    