Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
4
Posts with Upvotes
2
Upvoting Members
4
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
5 Commented Posts
0 Endorsements
Ranked #4K
~9K People Reached
Favorite Tags

22 Posted Topics

Member Avatar for Alice_Blue
Member Avatar for IwalkAlone

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 .

Member Avatar for ahmedhamdy
0
2K
Member Avatar for beenu thakur

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 …

Member Avatar for Ali.Ayam
0
174
Member Avatar for bolx

Make a for loop that starts from 12 to 1 (Decrementing here ) and then multiply 3 by the index and cout the result.

Member Avatar for Kev06N
0
145
Member Avatar for vs49688

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.

Member Avatar for ArkM
0
315
Member Avatar for phoenix911

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 …

Member Avatar for jephthah
0
196
Member Avatar for fadia

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.

Member Avatar for mirfan00
0
306
Member Avatar for fadia

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.

Member Avatar for tux4life
0
199
Member Avatar for Ameerah

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 …

Member Avatar for ArkM
0
198
Member Avatar for Carrots

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 …

Member Avatar for Carrots
0
191
Member Avatar for ProgrammersTalk
Member Avatar for abby2589

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 …

Member Avatar for Ahmed_I
0
123
Member Avatar for JONZ

[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 …

Member Avatar for death_oclock
0
317
Member Avatar for abby2589

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 :)

Member Avatar for Ahmed_I
0
111
Member Avatar for bfreelancer

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.

Member Avatar for yollyP.
0
116
Member Avatar for web_master

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 …

Member Avatar for web_master
0
101
Member Avatar for somnathsarode

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 …

Member Avatar for ddanbe
0
152
Member Avatar for A Monkeys Uncle

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 …

Member Avatar for GrimJack
0
961
Member Avatar for DJPlayer

if there is an active internet connection u can use ubuntu live cd and download the GTK+ Libraries and begin programming with GTK+.

Member Avatar for Ahmed_I
0
116
Member Avatar for kyosuke0

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 ' ) , } , ]' …

Member Avatar for kyosuke0
0
202
Member Avatar for Ahmed_I

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* …

Member Avatar for ArkM
0
195
Member Avatar for Ahmed_I

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 …

Member Avatar for Ahmed_I
0
198

The End.