Windows program written using MFC is a C++ program?
- by kwc
Hi,
Every C++ books that I've read says something like this:-
All C++ programs have a main() function.
main() function is the starting point for all C++ programs.
All C++ programs begin its execution from the main() function.
However, I found that Windows programs written using MFC do not have any main() function. It use WinMain() function as the program starting point.
So can I say that Windows program written using MFC is not a C++ program? Then, what kind of program it is?
Thanks.