How to execute business logic for only once ..?even though
user clicks submit button multiple times by mistake..?
(i disabled JavaScript)
what is static?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
Why do we use class in oops?
Write on signed and unsigned integers and give three (3) examples each
In which Scenario you will go for Interface or Abstract Class?
1 Answers InfoAxon Technologies,
What is class and example?
program in c++ that can either 2 integers or 2 floating point numbers and output the smallest number
When is it necessary to use member-wise initialization list in C++?
define a string class. overload the operator == to compare two strings
2 Answers Birla, Ericsson, HCL, Infosys, Infotech, MCAS, Satyam,
WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)
wht is ditch
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?