how to create window program in c++.please explain.
Answer / siddarth
generally for GUI related topics we go for the VC++ where
there are all sorts of GUI components and events are present
for c++,we can go for the concept of mouse programming for
creating windows,buttons etc
you can greate buttons by drawing rectangles present in
library "graphics.h" and by using mouse registers ax,bx,cx,dx
present in UNION REGS in dos.h,
etc............
heres the link
http://www.cprogrammingreference.com/Tutorials/Advance_Tutorials/mouseprogramming.php
ALL THE BEST
| Is This Answer Correct ? | 8 Yes | 1 No |
Can I learn c++ as my first language?
Can class objects be passed as function arguments?
What do you mean by friend class & friend function in c++?
Why can’t you call invariants() as the first line of your constructor?
Define friend function.
How much maximum can you allocate in a single call to malloc()?
Explain the scope of resolution operator.
What does flush do c++?
Is the declaration of a class its interface or its implementation?
What are the different data types present in C++?
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
What are the differences between new and malloc?