FULLPATH.CPP
上传用户:wtrl82617
上传日期:2007-01-07
资源大小:187k
文件大小:0k
源码类别:

界面编程

开发平台:

DOS

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. char buf[_MAX_PATH];
  4. void main(int argc, char *argv[])
  5. {
  6.   char a[255];
  7.   scanf ("%s",a);
  8.   {
  9. if (_fullpath(buf, a, _MAX_PATH) == NULL)
  10.   printf("Unable to obtain full path of %sn",a);
  11. else
  12.   printf("Full path of %s is %sn",a,buf);
  13.   }
  14. }