The escape character erases the first characters in the gets() string (57948)



The information in this article applies to:

  • The C Run-Time (CRT), when used with:
    • Microsoft C for MS-DOS
    • Microsoft Visual C++ for Windows, 16-bit edition 1.0
    • Microsoft Visual C++ for Windows, 16-bit edition 1.5
    • Microsoft Visual C++, 32-bit Editions 1.0
    • Microsoft Visual C++, 32-bit Editions 2.0
    • Microsoft Visual C++, 32-bit Editions 2.1
    • Microsoft Visual C++, 32-bit Editions 4.0
    • Microsoft Visual C++, 32-bit Editions 5.0
    • Microsoft Visual C++, 32-bit Editions 6.0
    • Microsoft Visual C++ 2005 Express Edition
    • Microsoft Visual C++ .NET (2003)
    • Microsoft Visual C++ .NET (2002)

This article was previously published under Q57948
Note Microsoft Visual C++ .NET 2002 and Microsoft Visual C++ .NET 2003 support both the managed code model that is provided by the Microsoft .NET Framework and the unmanaged native Microsoft Windows code model. The information in this article applies only to unmanaged Visual C++ code. Microsoft Visual C++ 2005 supports both the managed code model that is provided by the Microsoft .NET Framework and the unmanaged native Microsoft Windows code model.

SUMMARY

In Microsoft C for MS-DOS and Windows NT, if you enter the escape character (ASCII 1Bh) from the keyboard (console) into a string that gets(), cgets(), or fgets() is reading, all the string previously read in is erased. The string pointer is reset so that characters following the escape character are read into the beginning of the string. This is consistent with the action taken by the operating system to parse the input line. However, if the escape character is input from a file by redirection, the entire string, including the escape character, will be read into the string.

MORE INFORMATION

Sample Code #1

/* Compile options needed: none
*/ 

#include <conio.h>
#include <stdio.h>

char buf[22];
char *result;

void main(void)
{
     int i;
     buf[0] = 20;

     printf("Enter your text: \n");
     result = gets(buf);

     printf ( "Resulting String: %s\n", result );
     for( i = 0; i < 20; i ++ )
     {
          printf("Buf[%2d] = %c (char)\n", i, buf[i]);
     }
}
				
Note You must add the common language runtime support compiler option (/clr:oldSyntax) in Visual C++ 2005 to successfully compile the previous code sample. To add the common language runtime support compiler option in Visual C++ 2005, follow these steps:
  1. Click Project, and then click <ProjectName> Properties.

    Note <ProjectName> is a placeholder for the name of the project.
  2. Expand Configuration Properties, and then click General.
  3. Click to select Common Language Runtime Support, Old Syntax (/clr:oldSyntax) in the Common Language Runtime support project setting in the right pane, click Apply, and then click OK.
For more information about the common language runtime support compiler option, visit the following Microsoft Web site:

/clr (Common Language Runtime Compilation)
http://msdn2.microsoft.com/en-us/library/k8d11d4s.aspx

These steps apply to the whole article.

Enter the following string as a test:
   abcdef<esc>ghijk
				
Note that the resulting string is output as:
   ghijk
				
Now, create a data file named test.dat containing the string "abcdef<esc>ghijk" either by using a text editor that permits escape characters to be embedded in a string or by using the sample code #2 below.

Sample Code #2

/* Compile options needed: none
*/ 

#include <stdio.h>

void main(void)
{
   FILE* fp;
   char* fname = "test.dat";
   int   numwrote;

   if ( (fp = fopen( fname, "wt" )) == NULL )
      printf( "Unable to open text file \"%s\" for writing.\n", fname );
   else
   {
      if ( (numwrote = fprintf( fp, "abcdef""\x1b""ghijk" )) != 12 )
         printf( "Write to file failed!  %d bytes written!\n", numwrote );
      fclose( fp );
   }
}
				
If the program from sample code #1 is run with input redirected from the data file, as follows:
   program <test.dat
				
the resulting string is output as follows:
   abcdef<esc>ghijk
				
This behavior occurs in the entire gets() family of routines, including gets(), cgets(), and fgets(). If the input is coming from the console, the run time will use the standard MS-DOS, OS/2, or Windows NT keyboard read routines. On the other hand, if the input is coming from a file (through redirection), the operating system doesn't perform any editing and the file is read in literally.

Modification Type:MajorLast Reviewed:1/11/2006
Keywords:kbcode kbinfo KB57948 kbAudDeveloper