12 lines
110 B
C
12 lines
110 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
|
|
printf("c:\temp\a.dat\n");
|
|
|
|
printf("c:\\temp\\a.dat\n");
|
|
|
|
return 0;
|
|
}
|