What is DlgProc?
Answer / Jairam Paswan
"In Microsoft Windows, a dialog procedure (DlgProc) is a function that processes messages sent to a dialog box created by the CreateDialog or DialogBox functions.nnA dialog procedure receives messages related to the dialog box's events such as button clicks, focus changes, and window resizing. The dialog procedure must be defined as the callback function in the corresponding dialog template (.rc file)."n
| Is This Answer Correct ? | 0 Yes | 0 No |
What does int * mean in c++?
write a porgram in c++ that reads an integer and print the biggest digit in the number
Explain how the virtual base class is different from the conventional base classes of the opps.
Distinguish between a # include and #define.
What do c++ programmers do?
What is a conversion constructor?
What is unary operator? List out the different operators involved in the unary operator.
What is meant by entry controlled loop?
1 Answers Agilent, ZS Associates,
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
Describe delete operator?
How is c++ different from java?
Explain Text Manipulation Routines?