If I try this:
[code]
#include <iostream.h>
#include <windows.h>

void main()
{
WIN32_FIND_DATA data;
FindFirstFile("c:/*.cpp",&data);
cout<<&data;

}
[code]
I get a number that looks like a memory address. How can I extract the filename??