cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Windows Programming
can dll have a dos windows
can dll have a dos windows
May 31, 2009 at 9:15am UTC
chiwing
(154)
what means for console??
can dll have a dos windows? -->int main(int argc, char *argv[])
is it essential for dos windows program to have (int argc, char *argv[] ) this two variables?
and what is the function of this 2 variables?
thanks
May 31, 2009 at 11:55am UTC
Bazzy
(6281)
A library doesn't have an entry point
argc is the number of the arguments passed to your program, argv are the values of these arguments stored as array of C strings, they can be omitted:
int
main()
The console window and DOS are different things
May 31, 2009 at 2:02pm UTC
chiwing
(154)
thanks for your reply
i think i still have a long way to windows 32 picture user interface
Topic archived. No new replies allowed.