- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 2
- Upvoting Members
- 4
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
22 Posted Topics
Re: Could you tell us what include directives you used? | |
Re: Or u could use a Linked List to put the first string in a List and put the second string in another list . Then u can link the two lists together to get A concatenated string :-O . | |
Re: The Graphics that support the SLI technology doesn't mean that it need two Slots to Operate . Actually the SLI technology based in Operating two graphics that supports SLI to have dual graphics card with dual GPUs.(Which leads to Dual image processing power). And ofcourse to operate the SLI technology … | |
Re: Make a for loop that starts from 12 to 1 (Decrementing here ) and then multiply 3 by the index and cout the result. | |
![]() | Re: Try using this routine to convert from cstring to std::string using stringstream Here is the routine [CODE="CPP"] #include <sstream> #include <string> using namespace std; string convert(char *customString) { stringstream s; s << customString; string d = s.str(); return d; } [/CODE] Hope that i understood your Question. |
Re: If you want to multiply any number by 100 Try this :- [CODE="CPP"] int result = 0; int x; cout << "Enter Any Number " << endl; cin>>x; for ( int i = 1 ; i <= (100 /2) ; i++) { result += x << 1; } [/CODE] if … | |
Re: Don't forget to declare the array as float not int cuz it gonna receive the square roots of the integers which can be float numbers. | |
Re: Its a braces problem check for unclosed braces in all of your program. There is a missing brace in line of [QUOTE]while(faq_choice !=0)[/QUOTE] just add '}' before this line. it is for do while loop. | |
Re: I have an idea:- 1- make a structure with the following member. [CODE="CPP"] struct Record{ char name [20]; }; [/CODE] this structure is for using fixed length record 2- Enter the names and make sure when u enter it pad the remaining bytes with spaces. for example:- when entering mike … | |
Re: in line 33 you should inherit from VectorClass to use the virtual method AddACar(). i just wanted to warn cuz the method AddACar() u used in main isn't the virtual function that u declared in VectorClass. Secondly i dont see any member function or attributes u declared named DeleteACar from … | |
Re: Look abby2589 , I didn't read all your code but from the general idea of the code i assume that you want to know how to use the stack to check if the word is palindrome or not. - After you enter the string you will push all of its … | |
Re: [QUOTE=csurfer;800378]0 Trees are applied where ever solution to the problem needs branching of decisions at various levels according to requisites. Ex : T9 dictionary in mobiles.[/QUOTE] There also an important use of Trees in gaming Applications like in a Football game the movement of a Player is actually implemented using … | |
Re: You can Make a Structure for these four identifiers. [CODE="C"] struct AnyNameYouLike{ char* type_of_food; char* Name; char* Address; unsigned int Average_Cost; }; [/CODE] I hope that i understood your Question :) | |
Re: Well , I wanted to say that Although i'm not from U.S.A but i think that Obama will solve all your Problems and achieve every citizen the American Dream. | |
Re: Mr.web_master, I've searched for a function similar to gotoxy() in ncurses . I think i found this function: 1- [CODE]mvaddch(row,col,ch);[/CODE] Prints the ch in the given row and column (similar to x=row and y=column) 2-[CODE]move(row,col);[/CODE]move(row,col) move the cursor to the given position Therefore the mvaddch function can be written like … | |
Re: Your Binary Search Function's logic is right but You have some simple errors :- Firstly in the function since u intending using Recursion then u have to return the value that is resulted from the backtracking to a Variable and return this Variable to the Main function. [CODE="Cpp"] int bsearch(int … | |
Re: Oh Video Games what can i say about Video Games. The Problem is that Video Games didn't make me live My Childhood Properly like other Normal Children who spent their Childhood in Gardens . The Result is that Friends in school called me Video Games Geek. Oh I forget to … | |
Re: if there is an active internet connection u can use ubuntu live cd and download the GTK+ Libraries and begin programming with GTK+. | |
Re: You can traverse through the string using a pointer ofcourse :- -if u find any open braces (and i mean OPEN ' (,{,[ ') Push it to the stack. -While u still traversing the expression if u find any CLOSED braces(and i mean Closed ' ) , } , ]' … | |
Generic Double Linked List [CODE="C++"]/* These are generic Functions for a Generic List * Note:-Only Functions not including a Menu and an Interface * You could use these Functions for your own Benefit*/ #include <iostream> using namespace std; template <class X> struct node{ //Template Structure X data; node* next; node* … | |
Guys anybody faced this problem in Ubuntu 8.10 where when the cable is plugged in the PC it doesn't read any connection automatically like its predecessors. If anybody faced this problem plz can he provide me with the solution ? Note:-I've tried sort of things and noticed that in the … |
The End.