#include "stdio.h"
#include "direct.h"
#define _MAX_PATH 2048
void main()
{
char buffer[_MAX_PATH];
_getcwd( buffer, _MAX_PATH);
printf("Current Working Directory : %s\n", buffer);
}
'Programming > C & C++' 카테고리의 다른 글
난수 (Random) 함수 (0) | 2008.01.02 |
---|---|
pointer 와 reference 의 차이점 (0) | 2008.01.02 |
struct 와 typedef struct 의 차이점 (18) | 2008.01.02 |
동적 할당 (0) | 2008.01.02 |
에러시 메모리 값의 의미 (0) | 2008.01.02 |
댓글