Can anybody tell me wat is a composite class in C++
philiptabraham
Posts
-
compisite class -
can anybody tell me how this code worksint compute(int n) { if(n>0) { n=compute(n-3)+compute(n-1) return n; } return 1; } void main() { x=compute(5); cout<<x; } o/p:9 can anybody explain in detail the flow
-
can anybody help me out [modified]I didnt get what u mean by Registering the database?
-
can anybody help me out [modified]im using vc++ and accessing microsoft access as my database.im using my application on embedded xp,but on running my application im am geting this error "SPECIFIED DRIVER COULD NOT BE CONNECTED TO THE SYSTEM ERROR:126(MS ACCESS *MDB" THANKS IN ADVANCE
modified on Wednesday, March 19, 2008 10:24 AM
-
can anybody tell me how to execute an exe from my application in vc++can anybody tell me how to execute an exe from my application in vc++.i tried with winexec but was not able to execute my exe but it worked for executing Notepad.exe..... can anybody help
-
can anybody tell me how i can call a vb activex dll from c++can anybody tell me how i can call a vb activex dll from c++
-
can anybody helpwhat is the difference between array to pointers and pointer to array.Is there any difference. Thanks in advance
-
Video CompressionHI all, Can anybody help me to find some useful links for Video Compression techniques???? THanks in Advance. :)
-
can anybody help me outis there any technical difference between invoking a constructor using class obj(5,20) and class obj=class(10,40). Thanks in advance
-
can anybody help me out.....can anybody tell me how to fetch the value of a column in a particular row in the list control when i click anywhere on the row. i tried out this way TCHAR pszText[_MAX_PATH] LVITEM lvi={0}; lvi.mask=LVIF_Text; lvi.pszText=pszText lvi.cchTextMax=_MAX_PATH lvi.iItem=0; lvi.iItem=xc; listctrl.sendMessage(Lvm_GETITEM,(WPARAM)0,(LPARAM)(LPLVITEM)&lvi) but by using this code i am only able to fetch the first column value where as i want to fetch either the second or third column value. thanks in advance
-
Can anybody tell me the way of getting this answerCan anybody tell me the way os getting this answer #define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12))); } Ans:100 Thanks in advance
-
can anybody tell me What happens if an exception is throws from an, object's constructor and object's destructor?can anybody tell me What happens if an exception is throws from an, object's constructor and object's destructor? thanks in dvance
-
can anybody tell me why the size of the class is 16i have a class as mentioned below.The size of the class is only 16.Can anybody give me an explanation for this.Is this because of padding class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; }; THANKS IN ADVANCE
-
can anybody tell me why the size of an empty class is 1can anybody tell me why the size of an empty class is 1.and i also want to know why we cant create an object for an abstract class. Thanks in advance
-
conversion text to pdftry out this article www.codeproject.com/tools/Text2PDF.asp[^]
-
can anybody tell me how to convert a jpg image to a 24 bit bmp imagecan anybody tell me how to convert a jpg image to a 24 bit bmp image thanks in advance
-
can anybody explain me how the size of an empty class is 1bytecan anybody explain me how the size of an empty class is 1byte thanks in advance
-
can anybody tell me how to stop the printingi'm using 'Dan Pilat' printing made easy article in my Dialog based application and its working perfectly.But how do i stop the printing when the text is over, actually i'm using the print function for printing the bill. so it should stop the printing after the bill is over, i'm not using his header and footer part. Kindly reply, thanks in advance.
-
helpthank a lot...
-
helpi tried that also but its not getting it removed completely. what i tried is: On the second time before adding new string ill get the count and within the loop i tried to delete the string.But every thing is not getting deleted