14 Posted Topics
I used to have turbo c++ but it is outdated now, so the only problem i am having with that is that there was a great help documentation in turbo c++ for the language and i could just browse to any function of c++ and get its details. After turbo … | |
Well i downloaded the tar.bz2 package but when i try to compile it, it always need a new software to get installed(software dependences), like flex, gcc, bison etc. Now i am frustrated with these installations. so, is there any other method to install wine like to get a .deb file(am … | |
I planning to buy an Android phone of medium budget so I need your help to find out the best so it does not hangs and works smoothly, it should support most apps in the play store? | |
I need a code which can solve the equations like this :- 56*78+(78/8) In this we know that brackets must be solved first and then divide/multiply and then add/subtract. So, i need a code for solving this kind of equations which contains multiple operators in single line. Thnks :) | |
I am making a project on Visual Studio 2010 and i want to add some Stylish and Glassy Buttons to it so plz how can i do this ? if i could get some already made Buttons or i can make them myself .............. Thnks :) | |
I am unable to find line , oval ,rectangle etc Drawing tools in Visual Studio 2010 ......... I am also unable to find VisualBasic.PowerPack ........... Plz tell how to get them Thnks :) | |
Well i have two questions here:- 1. If f(n) is function whose growth rate is to be found then, Is for all three notations will the g(n) be same, like for f(n)=O(g(n)) and similaraly for omega and theta ? 2. Theta notation is "omega and Oh" if in some case … | |
I have tries run Angry Birds Game on my laptop But it says that opengl not suppoted. I use lenovo ideapad s10 with windows 7 ultimate on it. Plz Tell me the solution how can i get opengl suppot on my laptop.... | |
I am using windows 7 ultimate 32-bit edition, But when I try to run any dos screen like command prompt, c++ compiler etc. They are not going to full screen mode, Please tell me how to run my c++ compiler or any dos screen in full screen mode ……in windows … | |
[CODE]void inorder(struct node *r) { if(r!=NULL) { inorder(r->left); printf("\t %d",r->data); inorder(r->right); } }[/CODE] in the above code when the last element is reached i.e r->left becomes null then when inorder(r->left) is called it will send a null value to the function and if condition becomes false so the it'll come … | |
With some recording app i am able to record either mic voice or pc sound but when i try to record both it says to enable stereo mix. In sound properties i clicked on "show disabled devices" after that also no stereo mix comes Plz tell what to do ?(i … | |
I have been using code blocks for c++ i has mingw compiler which is using gcc it doesn't have conio.h header file so how do i clear the screen now ................? thanks | |
Well the following code I used to run graphics.h functions in windows xp CODE: int driver,mode; driver=DETECT; mode=DETECT; initgraph(&driver,&mode,"c:\\tc\\bgi"); Without this code functions of graphics.h (circle, line, arc etc.) did not run But in windows 7 this code is not working c++ is showing errors ….Well I am using the … ![]() | |
Well in windows 7 I know there are built in drivers for audio and video but in my laptop since I have installed windows 7(ultimate) , when ever I play any audio file it plays with some scratches sounds in it , where ever if play some game then the … |
The End.